-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "jamjar",
"description": "WebGL based browser game engine",
"version": "0.0.0",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src --ext .ts,.tsx",
"beautify": "prettier --write .",
"test": "jest --coverage --silent",
"generate-reference": "typedoc --entryPoints src/index.ts",
"docs": "mkdocs serve",
"download-specs": "scripts/download_proto_specs.sh",
"generate-specs": "scripts/generate_proto_specs.sh"
},
"author": "jthomperoo",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/jsdom": "^16.2.6",
"@types/node": "^14.14.30",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"typedoc": "^0.20.25",
"typedoc-plugin-markdown": "^3.5.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@types/resize-observer-browser": "^0.1.5",
"gl-matrix": "^3.3.0",
"tiny-sdf": "^1.0.2",
"ts-proto": "^1.74.0"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"lib/"
]
}