generated from Sceat/service-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "@aresrpg/aresrpg-world",
"version": "1.7.3",
"description": "Procedural voxel terrain generation for AresRPG",
"main": "dist/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"lint": "eslint . --ext .ts && prettier . --check && npm run typecheck",
"typecheck": "tsc --build",
"format": "prettier . --write && eslint . --fix --ext .ts",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aresrpg/aresrpg-world.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"dependencies": {
"@types/pako": "^2.0.3",
"alea": "^1.0.1",
"pako": "^2.1.0",
"poisson-disk-sampling": "^2.3.1",
"simplex-noise": "^4.0.3",
"workerpool": "^9.2.0"
},
"peerDependencies": {
"three": ">=0.163.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.13.3",
"@parcel/transformer-typescript-types": "^2.13.3",
"@types/poisson-disk-sampling": "^2.2.4",
"@types/three": "^0.171.0",
"@types/workerpool": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "^4.3.8",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"typescript": "^5.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}