-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@hmans/ingrid",
"private": false,
"author": {
"name": "Hendrik Mans",
"email": "hendrik@mans.de",
"url": "https://hendrik.mans.de"
},
"description": "Spatial Hash Grids and not much else.",
"homepage": "https://github.com/hmans/ingrid",
"keywords": [
"gamedev"
],
"sideEffects": false,
"version": "0.0.3",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"LICENSE",
"README.md"
],
"license": "MIT",
"scripts": {
"benchmark": "node --loader ts-node/esm --experimental-specifier-resolution=node benchmark.ts",
"clean": "rimraf dist",
"dev": "tsc --watch",
"build": "tsc",
"release": "yarn test && yarn clean && yarn build && yarn publish",
"test": "jest",
"ci": "yarn build && yarn test",
"docs": "typedoc src/index.ts"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"table": "^6.8.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tslib": "^2.0.3",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
}
}