forked from Schniz/cmd-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@alloc/cmd-ts",
"version": "0.17.0",
"homepage": "https://alloc.github.io/cmd-ts/",
"license": "MIT",
"author": "Gal Schlezinger",
"engines": {
"node": ">=20.18.0"
},
"main": "dist/cjs/index.js",
"typings": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "https://github.com/alloc/cmd-ts"
},
"files": [
"dist",
"batteries",
"docs"
],
"scripts": {
"build": "tsc && tsc --project ./tsconfig.esm.json",
"lint": "biome check src test example",
"start": "pnpm build --watch",
"prepublishOnly": "rm -rf dist && pnpm build && pnpm test",
"test": "vitest",
"ts-node": "tsx",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
"changeset:publish": "pnpm run build && changeset publish"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"sideEffects": false,
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@bomb.sh/tab": "^0.0.19",
"didyoumean": "^1.2.2",
"obug": "^2.1.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "2.29.4",
"@types/didyoumean": "1.2.3",
"@types/fs-extra": "11.0.4",
"@types/node-fetch": "2.6.12",
"@types/request": "2.48.12",
"execa": "9.6.0",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"infer-types": "0.0.2",
"node-fetch": "3.3.2",
"request": "2.88.2",
"tempy": "3.1.0",
"tsx": "^4.19.4",
"typescript": "5.8.3",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.11.1"
}