-
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) · 804 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 804 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": "skillet",
"version": "0.0.0",
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"dist/npm",
"README.md"
],
"bin": {
"skillet": "dist/npm/cli.js"
},
"scripts": {
"dev": "bun src/cli.ts",
"test": "vitest run",
"build": "bun scripts/build-release.ts",
"build:npm": "bun scripts/build-npm-cli.ts",
"render:homebrew": "bun scripts/render-homebrew-formula.ts",
"render:choco": "bun scripts/render-chocolatey-package.ts",
"render:winget": "bun scripts/render-winget-manifest.ts",
"docker:smoke": "mise run docker-smoke",
"prepack": "bun scripts/build-npm-cli.ts"
},
"dependencies": {
"cac": "^6.7.14",
"yaml": "^2.5.0"
},
"devDependencies": {
"vitest": "^1.6.0"
}
}