-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "rpi-cli",
"version": "2.0.0",
"description": "Cli utility to interact with a server instance",
"repository": "github:carloscortonc/rpi-cli",
"author": "Carlos Cortón Cobas <carloscortoncobas98@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc && tsc-alias && cpx 'src/**/*.sh' dist",
"build-local": "npm run build && chmod +x ./dist/index.js"
},
"bin": {
"rpi": "dist/index.js"
},
"files": [
"/dist"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"archiver": "^6.0.1",
"cli-er": "^0.19.0",
"enquirer": "^2.4.1",
"ini": "^5.0.0",
"minimatch": "^10.0.3",
"object-path": "^0.11.8"
},
"devDependencies": {
"@json-types/compose": "^0.10.0",
"@saithodev/semantic-release-backmerge": "^2.1.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/archiver": "^6.0.2",
"@types/ini": "^4.1.1",
"@types/node": "^20.8.5",
"@types/object-path": "^0.11.4",
"cpx": "^1.5.0",
"glob": "^10.3.10",
"rimraf": "^5.0.5",
"semantic-release": "^24.2.9",
"semantic-release-export-data": "1.2.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2"
},
"resolutions": {
"strip-ansi": "6.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}