forked from classmethod/tsumiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
{
"name": "tsumiki",
"private": false,
"version": "0.0.6",
"description": "A CLI tool for install tsumiki commands",
"keywords": [
"cli",
"tsumiki",
"claude",
"claudecode",
"ai"
],
"homepage": "https://github.com/classmethod/tsumiki#readme",
"bugs": {
"url": "https://github.com/classmethod/tsumiki/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/classmethod/tsumiki.git"
},
"license": "MIT",
"author": {
"name": "classmethod"
},
"type": "module",
"exports": {
".": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js",
"require": "./dist/cli.cjs"
}
},
"main": "./dist/cli.cjs",
"module": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"bin": {
"tsumiki": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && mkdir -p dist/commands dist/agents && cp ./commands/*.md ./commands/*.sh dist/commands/ 2>/dev/null || true && cp ./agents/*.md dist/agents/ 2>/dev/null || true && tsup",
"build:run": "pnpm build && node dist/cli.js",
"check": "biome check src",
"fix": "biome check src --write",
"prepare": "simple-git-hooks",
"secretlint": "secretlint --secretlintignore .gitignore **/*",
"typecheck": "tsgo --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm secretlint && pnpm typecheck && pnpm fix"
},
"dependencies": {
"commander": "14.0.0",
"fs-extra": "11.3.0",
"ink": "6.1.0",
"react": "19.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@secretlint/secretlint-rule-preset-recommend": "10.2.1",
"@tsconfig/node24": "24.0.1",
"@types/fs-extra": "11.0.4",
"@types/node": "24.1.0",
"@types/react": "19.1.9",
"@typescript/native-preview": "7.0.0-dev.20250729.2",
"secretlint": "10.2.1",
"simple-git-hooks": "2.13.0",
"tsup": "8.5.0",
"tsx": "4.20.3",
"typescript": "5.8.3"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=18.0.0"
}
}