-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.51 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.51 KB
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
{
"name": "seityan",
"version": "1.1.2",
"description": "Seityan - a desktop assistant",
"main": "dist/main.js",
"scripts": {
"start": "cd dist && electron .",
"build": "gulp build --max_old_space_size=2048",
"test": "mocha -r ts-node/register test/main-test.ts test/test.ts",
"test-api": "mocha -r ts-node/register test/apitest.ts",
"package": "npm run package-win32-x64 && npm run package-linux-x64 && npm run package-osx-x64",
"package-win32-x64": "electron-packager ./dist seityan --overwrite --asar --platform=win32 --arch=x64 --out=release-builds --icon=src/assets/image/win.ico",
"package-linux-x64": "electron-packager ./dist seityan --overwrite --asar --platform=linux --arch=x64 --out=release-builds",
"package-osx-x64": "electron-packager ./dist seityan --overwrite --asar --platform=darwin --arch=x64 --out=release-builds --icon=src/assets/image/mac.icns",
"dialog-test": "electron test/dialog-lancher.js",
"weather-test": "electron test/weather-lancher.js",
"build-doc": "typedoc --out ./doc/html --exclude '**/utils/conf.ts' --excludeExternals ./app"
},
"author": "",
"license": "MIT",
"repository": "https://github.com/Norgerman/Seityan",
"devDependencies": {
"@types/chai": "^ 4.1.6",
"@types/gulp": "^4.0.5",
"@types/material-ui": "^0.21.5",
"@types/mocha": "^5.2.5",
"@types/pixi.js": "^4.8.1",
"@types/pug": "^2.0.4",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.8",
"@types/react-tap-event-plugin": "0.0.30",
"@types/rimraf": "2.0.2",
"@types/run-sequence": "0.0.30",
"@types/webpack": "^4.4.15",
"@types/webpack-env": "^1.13.6",
"chai": "^4.2.0",
"electron": "3.0.3",
"electron-packager": "^12.2.0",
"fancy-log": "^1.3.2",
"fs-extra": "^7.0.0",
"gulp": "^3.9.1",
"mocha": "^5.2.0",
"plugin-error": "^1.0.1",
"pug": "^2.0.3",
"run-sequence": "^2.2.1",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"typedoc": "^0.12.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"axios": "^0.18.0",
"decompress-zip": "git://github.com/sunxfancy/decompress-zip",
"electron-dl": "^1.12.0",
"material-ui": "^0.20.2",
"pixi-live2d": "git://github.com/sunxfancy/pixi-live2d.git",
"pixi.js": "^4.8.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-tap-event-plugin": "^3.0.3",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"tone": "^0.12.80",
"uuid": "^3.3.2"
}
}