-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.8 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
{
"name": "emath.js",
"version": "9.6.0",
"description": "A library for incremental games based on break_eternity.js",
"homepage": "https://github.com/xShadowBlade/emath.js#readme",
"bugs": {
"url": "https://github.com/xShadowBlade/emath.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xShadowBlade/emath.js.git"
},
"license": "MIT",
"author": "xShadowBlade",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/main/eMath.mjs",
"default": "./dist/main/eMath.js"
},
"./game": {
"types": "./dist/types/game/index.d.ts",
"import": "./dist/game/eMath.game.mjs",
"default": "./dist/game/eMath.game.js"
},
"./presets": {
"types": "./dist/types/presets/index.d.ts",
"import": "./dist/presets/eMath.presets.mjs",
"default": "./dist/presets/eMath.presets.js"
},
"./ts": {
"default": "./src/index.ts"
},
"./ts/game": {
"default": "./src/game/index.ts"
},
"./ts/presets": {
"default": "./src/presets/index.ts"
}
},
"scripts": {
"build": "concurrently \"tsc --emitDeclarationOnly -outdir dist/types\" \"node bin/build/build.js\"",
"build-and-build-and-test": "concurrently \"node bin/build/build.js\" \"cd test && npm run build && cd ..\" && cd test && npm run test && cd ..",
"build-and-doc": "concurrently \"tsc --emitDeclarationOnly -outdir dist/types\" \"node bin/build/build.js\" \"typedoc --options typedoc.json\"",
"build-and-test": "node bin/build/build.js && cd test && npm run test && cd ..",
"build:main": "node bin/build/build.js",
"build:types": "tsc --emitDeclarationOnly -outdir dist/types",
"doc": "typedoc --options typedoc.json",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"test": "cd test && npm run test && cd .."
},
"dependencies": {
"class-transformer": "^0.5.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/md5": "^2.3.5",
"@types/node": "^22.0.0",
"break_eternity.js": "^2.0.0",
"concurrently": "^9.0.0",
"esbuild": "^0.24.0",
"esbuild-plugin-replace": "^1.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prettier": "^5.2.1",
"lz-string": "^1.5.0",
"md5": "^2.3.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}