-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "@sherpi/cli",
"version": "0.23.0",
"type": "module",
"bin": {
"sherpi": "./dist/bin/sherpi.mjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/bonnard-data/sherpi-cli"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx src/bin/sherpi.ts",
"build": "tsdown src/bin/sherpi.ts --format esm --out-dir dist/bin && npm run build:cowork",
"build:cowork": "esbuild src/bin/sherpi.ts --bundle --format=esm --platform=node --outfile=dist/cowork/sherpi-cowork.mjs --banner:js=\"import{createRequire as _cr}from'node:module';const require=_cr(import.meta.url);\" --define:SHERPI_VERSION='\"0.16.0\"' --target=node20",
"typecheck": "tsc --noEmit",
"lint": "eslint ."
},
"dependencies": {
"commander": "14.0.3",
"open": "11.0.0",
"picocolors": "1.1.1",
"tar": "7.5.13",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.19.17",
"@types/tar": "^7.0.87",
"esbuild": "^0.28.0",
"eslint": "10.2.0",
"tsdown": "0.21.7",
"tsx": "4.21.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0",
"vitest": "^4.1.4"
}
}