-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "surepack",
"version": "0.3.0",
"description": "Packing list generator",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "oxlint src",
"lint:fix": "oxlint --fix src",
"format:check": "oxfmt --check src",
"format": "oxfmt src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"bin": {
"surepack": "./dist/cli.js"
},
"author": "George Gritsouk <989898+gggritso@users.noreply.github.com>",
"license": "ISC",
"dependencies": {
"@inquirer/core": "^11.1.1",
"@inquirer/prompts": "^8.2.0",
"date-fns": "^4",
"pluralize": "^8",
"yargs": "^18"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/pluralize": "^0.0.33",
"@types/yargs": "^17.0.35",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"typescript": "^5.6.3",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@9.15.4",
"volta": {
"node": "24.12.0",
"pnpm": "9.15.4"
}
}