-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "politty",
"version": "0.11.4",
"description": "A lightweight CLI framework inspired by citty with zod v4 registry integration for type-safe metadata management",
"keywords": [
"argument-parser",
"cli",
"command-line",
"type-safe",
"typescript",
"zod"
],
"license": "MIT",
"author": "toiroakr",
"repository": {
"type": "git",
"url": "https://github.com/toiroakr/politty.git"
},
"bin": {
"politty": "./dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./augment": {
"types": "./dist/augment.d.ts",
"default": "./dist/augment.js"
},
"./compile-cache": {
"types": "./dist/compile-cache.d.ts",
"default": "./dist/compile-cache.js"
},
"./docs": {
"types": "./dist/docs/index.d.ts",
"default": "./dist/docs/index.js"
},
"./completion": {
"types": "./dist/completion/index.d.ts",
"default": "./dist/completion/index.js"
},
"./skill": {
"types": "./dist/skill/index.d.ts",
"default": "./dist/skill/index.js"
},
"./prompt": {
"types": "./dist/prompt/index.d.ts",
"default": "./dist/prompt/index.js"
},
"./prompt/clack": {
"types": "./dist/prompt/clack/index.d.ts",
"default": "./dist/prompt/clack/index.js"
},
"./prompt/inquirer": {
"types": "./dist/prompt/inquirer/index.d.ts",
"default": "./dist/prompt/inquirer/index.js"
}
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsgo --incremental",
"lint": "oxlint -c oxlint.json src tests",
"lint:fix": "oxlint -c oxlint.json --fix src tests",
"knip": "knip",
"format": "oxfmt src tests",
"format:check": "oxfmt --check src tests",
"organize-imports": "organize-imports-cli tsconfig.json",
"fix:oxlint": "oxlint -c oxlint.json --fix",
"fix:oxfmt": "oxfmt",
"prepare": "lefthook install",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"yaml": "^2.8.3"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@clack/prompts": "1.2.0",
"@inquirer/prompts": "8.5.2",
"@quansync/fs": "1.0.0",
"@types/node": "25.9.5",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "4.1.10",
"knip": "6.26.0",
"lefthook": "2.1.10",
"organize-imports-cli": "1.0.2",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"quansync": "1.0.0",
"tsdown": "0.22.5",
"tsx": "4.23.0",
"typescript": "7.0.2",
"vitest": "4.1.10",
"zod": "4.4.3"
},
"peerDependencies": {
"@clack/prompts": "^0.10.0 || ^0.11.0 || ^1.0.0",
"@inquirer/prompts": "^8.3.2",
"zod": "^4.2.1"
},
"peerDependenciesMeta": {
"@clack/prompts": {
"optional": true
},
"@inquirer/prompts": {
"optional": true
}
},
"engines": {
"node": ">=20.12.0 <21.0.0 || >=21.7.0"
},
"packageManager": "pnpm@11.11.0"
}