-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.95 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
61
62
63
64
65
66
67
68
{
"type": "module",
"name": "@gunsurvival/core",
"version": "1.0.0",
"description": "Core library for gunsurvival game",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"watch": "tsc --build --watch",
"build": "tsc --build",
"rl:major": "tsc --build && npm version $(semver %npm_package_version% -i major)",
"rl:minor": "tsc --build && npm version $(semver %npm_package_version% -i minor)",
"rl:patch": "tsc --build && npm version $(semver %npm_package_version% -i patch)",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:prettier": "prettier --write .",
"lint:eslint": "eslint --fix ."
},
"keywords": [
"gunsurvival",
"physic",
"game",
"shooting"
],
"author": "khoakomlem",
"license": "MIT",
"devDependencies": {
"@types/events": "^3.0.0",
"@types/random": "^3.0.1",
"@types/ungap__structured-clone": "^0.3.0",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": ">=5.43.0",
"eslint": ">=8.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.8",
"semver": "^7.3.8",
"typed-emitter": "^2.1.0",
"typescript": ">=4.4"
},
"dependencies": {
"@ungap/structured-clone": "^1.0.2",
"await-to-js": "^3.0.0",
"detect-collisions": "^6.6.11",
"events": "^3.3.0",
"poly-decomp": "^0.3.0",
"random": "^4.1.0",
"sat": "^0.9.0",
"visibility-polygon": "^1.1.0"
},
"exports": {
".": "./dist/index.js",
"./effect/*": "./dist/effect/*",
"./entity/*": "./dist/entity/*",
"./item/*": "./dist/item/*",
"./player/*": "./dist/player/*",
"./util/*": "./dist/util/*",
"./world/*": "./dist/world/*",
"./effect": "./dist/effect/index.js",
"./entity": "./dist/entity/index.js",
"./item": "./dist/item/index.js",
"./player": "./dist/player/index.js",
"./util": "./dist/util/index.js",
"./world": "./dist/world/index.js",
"./stats": "./dist/stats.js",
"./types": "./dist/types.js"
}
}