-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "goldensun_html5",
"version": "0.0.1",
"license": "MIT",
"author": "jjppof",
"description": "An online Golden Sun Engine entirely built in HTML5 with Phaser 2.",
"keywords": [
"Golden Sun"
],
"homepage": "https://github.com/jjppof/goldensun_html5#readme",
"bugs": "https://github.com/jjppof/goldensun_html5/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/jjppof/goldensun_html5.git"
},
"private": true,
"directories": {
"bin": "./dist",
"lib": "./base"
},
"type": "commonjs",
"main": "./electron/main.js",
"scripts": {
"start": "npx webpack-dev-server --config webpack.config.dev.js",
"start-desktop": "npm run build_prod && npx electron ./electron/main.js",
"start-desktop-dev": "npm run build && npx electron ./electron/main.js dev",
"build": "npx webpack --config webpack.config.dev.js",
"build_prod": "npx webpack --env.production --config webpack.config.prod.js",
"deploy": "npm run build_prod && node scripts/generate_deploy.js",
"format-check": "npx prettier --check \"base/**/*.ts\"",
"format": "npx prettier --write \"base/**/*.ts\"",
"docs": "node scripts/generate_docs.js",
"postinstall": "npx husky install && npm dedupe",
"prepublish": "npx pinst --disable",
"postpublish": "npx pinst --enable"
},
"engines": {
"npm": "^7"
},
"devDependencies": {
"@types/lodash": "~4.14",
"@types/mathjs": "~6.0",
"electron": "4.2.12",
"electron-packager": "~16.0.0",
"husky": "^5",
"pinst": "~2.1",
"prettier": "~2.6",
"ts-loader": "~8.3",
"tslib": "~2.4.0",
"typedoc": "~0.22",
"typescript": "~4.6",
"webpack": "~4.46",
"webpack-cli": "^3",
"webpack-dev-server": "~3.11",
"webpack-merge": "~5.8.0"
},
"dependencies": {
"@turf/turf": "^6",
"core-js": "~3.25.5",
"lodash": "^4",
"mathjs": "~9.5",
"rxjs": "~6.6"
}
}