-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 2.35 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": "golems",
"version": "1.13.3",
"description": "",
"private": true,
"scripts": {
"start": "vite",
"tsc": "tsc",
"build_types": "tsc --project tsconfig.outputtypes.json && cp -r public/spellmasons-mods/types/src/. public/spellmasons-mods/types && rm -r public/spellmasons-mods/types/src",
"build": "npm run build_types && tsc && vite build && npm run headless-build-only && node makeBuildManifest.js",
"test": "tsc && jest",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "prettier --check \"src/**/*.{ts,js}\"",
"headless-build-only": "tsc --project tsconfig.headless.json --outDir headless-server-build/ && cp package-lock.json headless-server-build/ && cp public/spellmasons-mods/build/SpellmasonsMods.cjs.js headless-server-build/src/SpellmasonsMods.cjs.js && cd headless-server-build/ && npm install --omit=dev",
"headless-run-server": "node headless-server-build/src/HeadlessServer.js",
"headless": "npm run headless-build-only && npm run headless-run-server",
"parseLocalization": "node public/localization/parseLocalizationSource.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdoleary/Golems.git"
},
"author": "Jordan O'Leary",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/jdoleary/Golems#readme",
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@jest/globals": "^26.6.2",
"@types/jest": "^26.0.20",
"@types/lodash.throttle": "^4.1.7",
"@types/object-hash": "^2.2.1",
"@types/pixi.js": "^5.0.0",
"@types/seedrandom": "^3.0.1",
"@types/stats.js": "^0.17.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"typescript": "^4.7.2",
"vite": "^2.9.9"
},
"dependencies": {
"@pixi/filter-adjustment": "^4.2.0",
"@pixi/filter-color-overlay": "^4.1.5",
"@pixi/filter-glow": "^4.2.0",
"@pixi/filter-multi-color-replace": "^4.2.0",
"@pixi/particle-emitter": "^5.0.7",
"@sentry/browser": "^7.31.1",
"@sentry/integrations": "^7.31.1",
"@sentry/node": "^7.31.1",
"@sentry/tracing": "^7.31.1",
"@websocketpie/client": "^1.0.1",
"@websocketpie/server": "^0.13.1",
"lodash.throttle": "^4.1.1",
"object-hash": "^3.0.0",
"pixi.js": "^6.4.2",
"seedrandom": "^3.0.5",
"stats.js": "^0.17.0"
}
}