-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
93 lines (93 loc) · 3.41 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@irrelon/ige",
"version": "3.0.2",
"author": "Irrelon Software Limited <[email protected]>",
"description": "The Isogenic Game Engine",
"contributors": [
{
"name": "Rob Evans",
"email": "[email protected]"
}
],
"engines": {
"node": ">=v16"
},
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"tsc-b": "tsc -b",
"build": "npm run build-esm && npm run build-cjs",
"build-all": "npm run build-esm && npm run build-cjs && npm run generate-docs",
"build-esm": "(npm run compile-esm 2>/dev/null || exit 0) && sh ./fixup-esm.sh && npm run fix-paths-esm",
"build-cjs": "(npm run compile-cjs 2>/dev/null || exit 0) && sh ./fixup-cjs.sh && npm run fix-paths-cjs",
"build-tests": "(npm run compile-tests 2>/dev/null || exit 0) && sh ./fixup-cjs.sh && npm run fix-paths-cjs",
"compile": "npm run compile-esm && npm run compile-cjs",
"compile-esm": "tsc -p tsconfig-esm.json",
"compile-cjs": "tsc -p tsconfig-cjs.json",
"compile-tests": "tsc -p tsconfig-tests.json",
"fix-paths": "npm run fix-paths-esm && npm run fix-paths-cjs",
"fix-paths-esm": "npx @irrelon/fix-paths -p ./tsconfig-esm.json -i \"**/*.js, **/*.ts\" --write",
"fix-paths-cjs": "npx @irrelon/fix-paths -p ./tsconfig-cjs.json -i \"**/*.js, **/*.ts\" --write",
"build-esm-watch": "tsc -p tsconfig-esm.json --watch",
"build-cjs-watch": "tsc -p tsconfig-cjs.json --watch",
"fix-paths-watch": "npx @irrelon/fix-paths --write --watch",
"generate-exports": "node update-indexes.cjs",
"test": "npx jest --testMatch \"**.test.ts\"",
"build-test": "npm run build-tests && NODE_OPTIONS=--experimental-vm-modules npx jest --all -f --testMatch \"**/cjs/**/**.test.js\"",
"test-watch": "NODE_OPTIONS=--experimental-vm-modules npx jest -f \".test.js\" --watch --all",
"eslint-fix": "eslint --ext .ts,.tsx . --fix",
"scan-deps": "npx madge ./src --ts",
"generate-docs": "npx typedoc ./src --options typedoc.cjs"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"typedoc-material-theme": "^1.0.2",
"websocket": "^1.0.34"
},
"devDependencies": {
"@irrelon/fix-paths": "^1.0.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/esprima": "^4.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.21",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@webgpu/types": "^0.1.40",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"chokidar": "^3.5.3",
"easyimage": "0.1.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tree-shaking": "^1.12.1",
"eslint-plugin-unused-imports": "^3.1.0",
"esprima": "^4.0.1",
"glob": "^10.3.10",
"jest": "^29.7.0",
"madge": "^6.1.0",
"minimatch": "^7.4.2",
"mongodb": "6.3.0",
"mysql": "2.18.1",
"prettier": "^3.2.5",
"stacktrace-js": "^2.0.2",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.0",
"tsconfig-paths": "^4.2.0",
"ttypescript": "^1.5.15",
"typedoc": "^0.25.12",
"typescript": "^5.4.2",
"yargs": "^17.7.2"
}
}