-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.08 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
79
80
81
{
"name": "ekx",
"description": "Toy game engine",
"version": "0.0.4",
"license": "ISC",
"author": "Ilya Kuzmichev <eliasku.games@gmail.com> (https://eliasku-games.web.app)",
"type": "module",
"bin": {
"ekx": "lib/cli/main.ts"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/eliasku/ekx.git"
},
"bugs": {
"url": "https://github.com/eliasku/ekx/issues",
"email": "eliasku.games@gmail.com"
},
"scripts": {
"build": "ts-node scripts/build.ts",
"build-native": "ts-node scripts/build-native.ts",
"build-native-coverage": "ts-node scripts/build-native-coverage.ts",
"build-external": "ts-node scripts/build-external.ts",
"test-external-utils": "ts-node scripts/shdc-test/test.ts",
"typecheck": "tsc -p tsconfig-tsc.json",
"clean": "ts-node scripts/clean.ts",
"update-lock": "rm -r node_modules && rm package-lock.json && npm i && git add package-lock.json",
"release": "npm run build && changeset publish",
"version": "changeset version && npm run update-lock",
"gen-calo": "ts-node packages/calo/lib/index.ts",
"changeset": "changeset add"
},
"dependencies": {
"@swc/core": "^1.3.60",
"@types/decompress": "^4.2.4",
"@types/gettext-parser": "^4.0.2",
"@types/mustache": "^4.2.2",
"@types/node": "^18.16.15",
"@types/plist": "^3.0.2",
"@types/xmldoc": "^1.1.6",
"colors": "^1.4.0",
"decompress": "^4.2.1",
"esbuild": "^0.17.19",
"gettext-parser": "^6.0.0",
"glob": "^10.2.1",
"mustache": "^4.2.0",
"plist": "^3.0.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"xmldoc": "^1.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1"
},
"os": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"tsconfig.json",
"logo.png",
"CMakeLists.txt",
"CHANGELOG.md",
"tools",
"packages",
"packages/audio/js",
"packages/app/js",
"lib",
"plugins",
"plugins/firebase/js",
"external"
]
}