-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 844 Bytes
/
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
{
"name": "ecs",
"version": "0.23.0",
"description": "data oriented, functional entity component system",
"main": "ecs.js",
"types": "types/ecs.d.ts",
"type": "module",
"scripts": {
"test": "tap test/",
"build": "tsc",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"game",
"gamedev",
"ecs",
"entity component system"
],
"dependencies": {
"remove-array-items": "^3.0.0"
},
"devDependencies": {
"tap": "^16.0.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mreinstein/ecs.git"
},
"author": "Michael Reinstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/mreinstein/ecs/issues"
},
"engines": {
"node": ">=12.17"
},
"homepage": "https://github.com/mreinstein/ecs#readme"
}