-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "zeppplayer",
"version": "1.7.2",
"description": "Unofficial ZeppOS emulator",
"main": "app/zepp_player/cli.js",
"scripts": {
"browser:build": "esbuild --bundle --outdir=app src/index.browser.js",
"cli:build": "esbuild --bundle --platform=node --external:canvas --outdir=app src/index.cli.js",
"browser:watch": "esbuild --bundle --outdir=app src/index.browser.js --watch",
"build": "npm run browser:build && npm run cli:build"
},
"bin": {
"zepp-preview": "app/index.cli.js"
},
"repository": {
"type": "git",
"url": "https://notabug.org/melianmiko/ZeppPlayer"
},
"author": "MelianMiko",
"license": "Apache 2.0",
"dependencies": {
"@types/node": "^20.10.5",
"buffer": "^6.0.3",
"canvas": "^2.11.2",
"file-saver": "^2.0.5",
"fs": "^0.0.1-security",
"mini-signals": "^2.0.0"
},
"devDependencies": {
"@types/uuid": "^9.0.7",
"esbuild": "^0.19.10",
"gif-encoder-2": "^1.0.5",
"normalize-path": "^3.0.0",
"path-normalize": "^6.0.12",
"preact": "^10.19.3",
"tga": "^1.0.7",
"uuid": "^9.0.1",
"yargs": "^17.7.2"
}
}