-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "rardir",
"version": "1.0.6",
"author": "Max Zakharzhevskiy",
"description": "Utility to pack meta data inside specified folders.",
"license": "MIT",
"main": "dist/cli.js",
"bin": "dist/cli.js",
"type": "module",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=10.16.0"
},
"keywords": [
"utility",
"winrar",
"javascript",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maxzz/rardir.git"
},
"bugs": {
"url": "https://github.com/maxzz/rardir/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/minimist": "^1.2.5",
"@types/node": "20.12.11",
"builtin-modules": "^4.0.0",
"nexe": "4.0.0-rc.6",
"pkg": "^5.8.1",
"rollup": "^4.17.2",
"typescript": "^5.4.5"
},
"dependencies": {
"minimist": "1.2.8",
"node-chalk": "^5.3.2",
"rimraf": "^5.0.7"
},
"scripts": {
"dev": "tsc -w",
"build": "rm -rf dist && tsc && rollup -c",
"prepublish": "pnpm build",
"exe-no": "pnpm build && pkg -o rardirj24 dist/all.mjs -t node18-win-x64",
"ne2-no": "pnpm build && nexe -o rardirj25.exe -i dist/all.mjs --build",
"ne3-no": "pnpm build && nexe -o rardirj25.exe -i dist/all.mjs -t host --build",
"ne-no": "pnpm build && nexe -o rardirj25.exe -i dist/all.mjs -t windows"
}
}