-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 862 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"author": "Ex Inferi <dev@exinferi.nl>",
"name": "alt1libs",
"description": "Example & docs for developing with the alt1 library",
"version": "1.4.4",
"scripts": {
"lint": "prettier . -w",
"build": "webpack",
"watch": "webpack --watch",
"deploy": "git push && npm run build && gh-pages -d dist",
"patch": "npm version patch && npm run deploy",
"minor": "npm version minor && npm run deploy",
"major": "npm version major && npm run deploy"
},
"dependencies": {
"alt1": "^0.1.2"
},
"devDependencies": {
"@types/node": "^22.14.1",
"css-loader": "^7.1.2",
"gh-pages": "^6.3.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.5.3",
"sharp": "^0.34.1",
"source-map-loader": "^5.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.6",
"webpack-cli": "^6.0.1"
}
}