forked from flyover/box2d.ts
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
66
67
68
69
70
71
72
73
{
"private": true,
"workspaces": [
"packages/core",
"packages/controllers",
"packages/debug-draw",
"packages/particles",
"packages/lights",
"packages/benchmark",
"apps/testbed",
"apps/benchmark-web",
"apps/updiff"
],
"scripts": {
"bench": "npm start -w @box2d/benchmark",
"bench:web": "npm start -w @box2d/benchmark-web",
"build": "npm run build --workspaces --if-present",
"build:benchmark": "npm run build -w @box2d/benchmark-web",
"build:libs": "npm run build -w @box2d/core -w @box2d/controllers -w @box2d/particles -w @box2d/lights -w @box2d/debug-draw -w @box2d/benchmark",
"build:testbed": "npm run build -w @box2d/testbed",
"credit": "all-contributors add",
"docs:build": "npm run docs:build:base -- build",
"docs:build:base": "rimraf docs-dist && mono-docs .",
"docs:dev": "nodemon --exec \"npm run docs:build:base -- serve\"",
"postinstall": "patch-package",
"lint": "mono-lint",
"lint:fix": "mono-lint --fix",
"release": "mono-release",
"start": "npm start -w @box2d/testbed",
"updiff": "npm start -w @box2d/updiff",
"updiff:cpp": "npm run convert:cpp -w @box2d/updiff",
"updiff:ts": "npm run convert:ts -w @box2d/updiff"
},
"nodemonConfig": {
"ext": "ts,tsx,md,scss,png,webp",
"ignore": [
"docs-dist/*",
"dist/*",
"node_modules/*"
]
},
"devDependencies": {
"@lusito/eslint-config-react": "^3.2.0",
"@lusito/mono": "^0.19.3",
"@lusito/mono-docs": "^0.19.2",
"@lusito/prettier-config": "^3.1.0",
"@lusito/stylelint-config": "^3.0.0",
"@types/rimraf": "^4.0.5",
"all-contributors-cli": "^6.26.1",
"nodemon": "^3.1.3",
"patch-package": "^8.0.0",
"rimraf": "^4.4.1",
"sort-package-json": "^2.10.0",
"typescript": "^5.4.5"
},
"volta": {
"node": "22.3.0"
},
"monoLint": {
"lintMarkdownLinks": {
"warnOnlyPatterns": [
"^https:\\/\\/lusito\\.github\\.io\\/box2d.ts\\/",
"^https:\\/\\/github\\.com\\/Lusito\\/box2d\\.ts\\/",
"^https:\\/\\/www\\.reddit\\.com\\/"
]
},
"lintMarkdownTitles": {
"ignorePatterns": [
"@box2d[/a-z0-9-]*"
]
}
}
}