-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.09 KB
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
74
75
76
77
78
{
"name": "mml",
"type": "module",
"packageManager": "npm@11.8.0",
"scripts": {
"preinstall": "node ./check-node-version.js",
"serve": "turbo run serve --output-logs=full --concurrency=5 --continue",
"build": "turbo run build --output-logs=full",
"start": "npm run iterate",
"iterate": "npm run build && npm run iterate-without-build",
"iterate-without-build": "turbo run iterate --output-logs=full --concurrency=1000 --continue",
"test-all": "turbo run test --output-logs=full --concurrency=5 --continue",
"lint-all": "turbo run lint --output-logs=full --concurrency=5 --continue",
"lint-fix-all": "turbo run lint-fix --output-logs=full --concurrency=5 --continue",
"type-check-all": "turbo run type-check --output-logs=full --concurrency=5 --continue",
"check": "npm run build && npm run type-check-all && npm run lint-all",
"link-all": "lerna exec \"npm link\" --no-private && npm run print-links",
"print-links": "echo \"Run this command in the package you would like to link this repo's packages to:\n\"; echo \"npm link\" $(lerna ls --loglevel=error)",
"version": "lerna version --no-push --force-publish",
"ci:e2e-tests": "npm run ci:e2e-tests -w e2e-tests",
"ci:e2e-tests:threejs": "npm run ci:e2e-tests:threejs -w e2e-tests",
"ci:e2e-tests:playcanvas": "npm run ci:e2e-tests:playcanvas -w e2e-tests",
"ci:e2e-tests:threejs:shard": "npm run ci:e2e-tests:threejs:shard -w e2e-tests",
"ci:e2e-tests:playcanvas:shard": "npm run ci:e2e-tests:playcanvas:shard -w e2e-tests",
"e2e-tests": "npm run e2e-tests -w e2e-tests",
"e2e-tests:threejs": "npm run e2e-tests:threejs -w e2e-tests",
"e2e-tests:playcanvas": "npm run e2e-tests:playcanvas -w e2e-tests",
"e2e-tests:failed": "npm run e2e-tests:failed -w e2e-tests",
"e2e-tests:threejs:failed": "npm run e2e-tests:threejs:failed -w e2e-tests",
"e2e-tests:playcanvas:failed": "npm run e2e-tests:playcanvas:failed -w e2e-tests"
},
"workspaces": [
"packages/**/*",
"examples/**/*",
"e2e-tests",
"integration-tests/**/*",
"github-pages-publisher"
],
"devDependencies": {
"@babel/preset-typescript": "7.28.5",
"@eslint/js": "9.39.2",
"@swc/core": "1.15.10",
"@types/jju": "1.4.5",
"@types/node": "25.0.9",
"@types/resolve": "1.20.6",
"@types/tmp": "0.2.6",
"@vitest/ui": "4.0.17",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"esbuild": "0.27.2",
"esbuild-plugin-copy": "2.1.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"jju": "1.4.0",
"lerna": "9.0.5",
"prettier": "3.8.0",
"publish-if-not-exists": "1.1.0",
"resolve": "1.22.11",
"tmp": "0.2.5",
"ts-node": "10.9.2",
"tsx": "4.21.0",
"turbo": "2.7.5",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1",
"vitest": "4.0.17"
},
"optionalDependencies": {
"@nrwl/nx-linux-x64-gnu": "15.9.3"
},
"overrides": {
"canvas": "$canvas"
},
"dependencies": {
"canvas": "npm:@napi-rs/canvas@0.1.88"
}
}