-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 798 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 798 Bytes
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
{
"name": "cachaca.js",
"version": "1.0.0",
"description": "",
"main": "dist/cachaca-cli.js",
"bin": {
"cachaca.js": "./dist/cachaca-cli.js"
},
"scripts": {
"build": "node build.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"start": "node dist/cachaca-cli.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/github": "^6.0.1",
"@actions/glob": "^0.5.0",
"@octokit/rest": "^22.0.0",
"axios": "^1.12.2",
"commander": "^14.0.1"
},
"devDependencies": {
"@types/commander": "^2.12.5",
"esbuild": "0.25.10",
"typescript": "^5.9.2"
}
}