-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.4 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.4 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
{
"name": "wima",
"version": "0.2.0",
"description": "An ECS driven modular game engine.",
"homepage": "https://wimaengine.github.io/wima/",
"bugs": {
"url": "https://github.com/wimaengine/wima/issues"
},
"type": "module",
"license": "SEE LICENSE in LICENSE.txt",
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.module.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"author": "Wayne Mwashuma",
"repository": {
"type": "git",
"url": "https://github.com/wimaengine/wima.git"
},
"scripts": {
"start": "vite --config .config/vite.config.js",
"dev": "vite --config .config/vite.config.js",
"init": "husky .husky",
"rollup": "rollup --config .config/rollup.config.js",
"eslint": "eslint --config .config/eslint.config.js --ignore-pattern '**/*.test.js'",
"typedoc": "typedoc -options .config/typedoc.json --tsconfig .config/tsc.lint.json",
"types": "tsc -p .config/tsc.type.json",
"changelog": "node scripts/changelog.js",
"test": "node --test",
"build": "npm run build:lib && npm run build:docs",
"build:lib": "npm run types && npm run rollup && npm run clean:types",
"build:docs": "npm run typedoc",
"lint": "npm run lint:src && npm run lint:examples",
"lint:dry": "npm run lint:src-dry && npm run lint:examples-dry",
"lint:src-dry": "npm run eslint -- src",
"lint:examples-dry": "npm run eslint -- examples",
"lint:src": "npm run lint:src-dry -- --fix",
"lint:examples": "npm run lint:examples-dry -- --fix",
"tsc:lint": "tsc -p .config/tsc.lint.json",
"watch:src": "npm run rollup -- --watch",
"watch:docs": "npm run typedoc -- --watch",
"clean:types": "rm -r types",
"pre-commit": "lint-staged --config .config/lint.config.js",
"pre-push": "npm run test"
},
"keywords": [
"game",
"engine",
"game engine",
"2D",
"3D"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/node": "^24.0.12",
"eslint": "^9.30.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^51.3.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.2.1",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"vite": "^7.0.0"
},
"files": [
"dist/*"
]
}