forked from gondwanasoft/wff-build-script
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.53 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.53 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
{
"name": "clockwork",
"version": "1.1.6-fix.2",
"main": "scripts/build.js",
"repository": "https://github.com/turtlepaw/clockwork.git",
"author": "https://github.com/turtlepaw",
"contributors": [
"https://github.com/gondwanasoft"
],
"license": "MIT",
"scripts": {
"compile": "tsc -p ./scripts/tsconfig.json",
"build": "yarn compile && yarn bundle && yarn postbuild && yarn pkg",
"bundle": "ncc build build/scripts/index.js -o build",
"pkg-old": "pkg ./build/build.js --output build --targets node20-linux,node20-win,node20-mac --public",
"pkg": "pkg ./build/index.js --output clockwork --targets node20-linux,node20-win,node20-mac --public",
"pkg-debug": "pkg ./build/index.js --output wf/clockwork --targets node20-linux,node20-win,node20-mac --public",
"postbuild": "node ./postbuild.js",
"debug": "yarn compile && yarn bundle && yarn postbuild && yarn pkg-debug && cd wf"
},
"dependencies": {
"@vscode/sudo-prompt": "^9.3.1",
"chalk": "4",
"inquirer": "^12.3.0",
"js-yaml": "^4.1.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"@yao-pkg/pkg": "^6.2.0",
"esbuild": "^0.24.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"packageManager": "yarn@4.6.0",
"bin": "build/index.js",
"pkg": {
"scripts": [
"server/**/*",
"node_modules/axios/dist/node/*"
],
"assets": [
"dist/**/*",
"snippets/**",
"node_modules/ora/**"
]
}
}