forked from krispya/bitECS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "bitecs",
"version": "0.3.40",
"description": "Functional, minimal, data-oriented, ultra-high performance ECS library written in Javascript",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NateTheGreatt/bitECS"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"author": {
"name": "Nathaniel Martin",
"email": "mrtn.nathaniel@gmail.com",
"url": "https://github.com/NateTheGreatt"
},
"contributors": [
{
"name": "Randy Lebeau",
"email": "randylebeau@gmail.com",
"url": "https://github.com/SupremeTechnopriest"
}
],
"scripts": {
"test": "c8 mocha test --recursive",
"build": "node scripts/build.js",
"watch": "npm run build -- -w",
"twatch": "npm run build -- -w -t",
"docs": "node scripts/docs.js",
"dist": "npm run test && npm run build && npm run docs"
},
"devDependencies": {
"boxen": "^6.2.1",
"brotli-size": "^4.0.0",
"c8": "^7.10.0",
"chalk": "^5.0.0",
"dmd-readable": "^1.2.4",
"esbuild": "^0.14.5",
"fs-extra": "^10.0.0",
"globby": "^12.0.2",
"gradient-string": "^2.0.0",
"gzip-size": "^7.0.0",
"human-readable": "^0.2.1",
"jsdoc-to-markdown": "^7.1.0",
"minimist": "^1.2.5",
"mocha": "^9.1.3",
"ora": "^6.0.1",
"sloc": "^0.3.2",
"typescript": "^5.3.3"
}
}