-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@aresrpg/aresrpg-engine",
"version": "2.6.3",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"publish": "npm run clean && npm run build && npm run lint",
"build": "tsc -p ./src/lib/tsconfig.json",
"clean": "shx rm -rf dist",
"lint": "eslint . --ext .ts && prettier . --check",
"format": "prettier . --write && eslint . --fix --ext .ts",
"test:http-server": "http-server ./test -p 8086 -c-1",
"test:build": "webpack --config src/test/webpack.config.js --watch",
"test:clean": "shx rm -rf test/**/*/js",
"postversion": "git push --follow-tags"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"three": ">=0.170.0"
},
"devDependencies": {
"@types/three": "^0.170.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@webgpu/types": "^0.1.51",
"alea": "^1.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"lil-gui": "^0.20.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"simplex-noise": "^4.0.3",
"three": "^0.170.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}