-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "alt1lite",
"version": "0.0.1",
"description": "Lightweight cross-platform client for Alt1 Toolkit apps",
"main": "index.ts",
"scripts": {
"build": "node --experimental-strip-types ./node_modules/webpack/bin/webpack.js",
"release": "npm run build -- -p",
"watch": "npm run build -- --watch",
"ui": "electron --inspect=9228 ./dist/alt1lite.bundle.js",
"native": "npm run nativerelease -- --debug",
"nativerelease": "electron-rebuild -f -w alt1lite",
"install": "npm run native"
},
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@alt1/font-loader": "^1.0.0-alpha.2",
"@alt1/imagedata-loader": "^1.0.0-alpha.2",
"@alt1/webpack": "^1.0.0-alpha.5",
"@types/autobind-decorator": "^2.1.0",
"@types/classnames": "^2.2.11",
"@types/node-fetch": "^2.5.8",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^4.41.26",
"@types/webpack-node-externals": "^2.5.0",
"alt1": "^0.1.0",
"asar": "^3.0.3",
"autobind-decorator": "^2.4.0",
"classnames": "^2.2.6",
"css-loader": "^5.0.1",
"electron-rebuild": "^3.2.7",
"file-loader": "^6.2.0",
"json-loader": "^0.5.7",
"nan": "^2.14.2",
"node-addon-api": "^3.1.0",
"sass": "^1.56.1",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^5.7.3",
"url-loader": "^4.1.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"electron": "^34.3.0",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}