-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "profile-updater",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run build-1 && npm run build-2 && npm run copy-vendor && npm run copy-image && npm run create-zip",
"build-1": "rollup -c",
"build-2": "pkg dist/bundle.js -t node22-win-x64 --output build/profileUpdater.exe --public",
"copy-vendor": "cp -r vendor build/vendor",
"copy-image": "cp profile-changer.ico build",
"update-icon": "node build-scripts/set-icon.js",
"create-zip": "node build-scripts/create-zip.js",
"ncc": "npx @vercel/ncc build -o build/lib",
"ig": "npm install -g @yao-pkg/pkg@6.4.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"bin": "./index.js",
"pkg": {
"assets": [
"profile-changer.ico",
"profile-changer.png"
]
},
"dependencies": {
"@yao-pkg/pkg": "^6.4.0",
"arg": "^5.0.2",
"create-desktop-shortcuts": "^1.11.1",
"node-hide-console-window": "^2.2.0",
"node-notifier": "^10.0.1",
"node-systray-v2": "github:Edgar-P-yan/node-systray-v2",
"puppeteer-core": "^24.7.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"adm-zip": "^0.5.16",
"rcedit": "^4.0.1",
"rollup": "^4.40.0"
},
"comments": {
"global dependencies": {
"@yao-pkg/pkg@6.4.0 global install":
"npm install -g @yao-pkg/pkg@6.4.0",
"npm-check-updates":
"npm install -g npm-check-updates"
}
}
}