-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
56
57
58
59
60
{
"name": "@nutgaard/dktp",
"version": "0.0.0-development",
"description": "A simple cli to interact with Azure ContainerApps with arm/yaml templates",
"keywords": [
"containerapp",
"arm",
"yaml",
"azure"
],
"repository": {
"type": "git",
"url": "https://github.com/nutgaard/dktp"
},
"main": "./lib/index.js",
"bin": {
"dktp": "dktp"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"author": "Nicklas Utgaard",
"license": "MIT",
"scripts": {
"prepare": "husky",
"commit": "git-cz",
"build": "bun build src/index --outfile ./lib/index.mjs --target node"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cross-spawn": "^6.0.6",
"@types/inquirer": "^9.0.7",
"@vitest/coverage-v8": "^1.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.0.0",
"vitest": "^1.6.0"
},
"dependencies": {
"commander": "^12.1.0",
"cross-spawn": "^7.0.3",
"dotenv": "^16.4.5",
"inquirer": "^9.2.22",
"yaml": "^2.4.2"
},
"lint-staged": {
"*.{ts,js}": "prettier --write"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}