-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.6 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.6 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
{
"name": "ccsettings",
"version": "0.9.0",
"description": "CLI tool for applying Claude Code configuration templates on a per-project basis",
"keywords": [
"claude-code",
"claude",
"ai",
"settings",
"template",
"cli",
"configuration",
"development",
"permissions"
],
"homepage": "https://github.com/dyoshikawa/ccsettings#readme",
"bugs": {
"url": "https://github.com/dyoshikawa/ccsettings/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dyoshikawa/ccsettings.git"
},
"license": "MIT",
"author": "dyoshikawa",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ccsettings": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"bcheck": "biome check src/",
"bcheck:fix": "biome check --write src/",
"build": "tsup",
"check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
"cspell": "cspell \"**/*\"",
"dev": "tsx src/cli/index.ts",
"start": "node dist/cli/index.js",
"eslint": "eslint . --max-warnings 0 --cache",
"eslint:fix": "eslint . --fix --max-warnings 0 --cache",
"fix": "pnpm run bcheck:fix && pnpm run oxlint:fix && pnpm run eslint:fix",
"oxlint": "oxlint . --max-warnings 0",
"oxlint:fix": "oxlint . --fix --max-warnings 0",
"prepublishOnly": "pnpm build",
"secretlint": "secretlint --secretlintignore .gitignore \"**/*\"",
"sort": "sort-package-json",
"test": "vitest run --silent",
"test:coverage": "vitest run --coverage --silent",
"test:watch": "vitest --silent",
"typecheck": "tsgo --noEmit",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"dependencies": {
"commander": "14.0.0",
"lodash-es": "4.17.21",
"zod": "4.0.5"
},
"devDependencies": {
"@biomejs/biome": "2.0.0",
"@eslint/js": "9.30.1",
"@secretlint/secretlint-rule-preset-recommend": "10.1.0",
"@tsconfig/node24": "24.0.1",
"@types/lodash-es": "4.17.12",
"@types/node": "24.0.3",
"@typescript/native-preview": "7.0.0-dev.20250623.1",
"@vitest/coverage-v8": "3.2.4",
"cspell": "9.1.2",
"eslint": "^9.30.1",
"eslint-plugin-no-type-assertion": "1.3.0",
"eslint-plugin-oxlint": "1.5.0",
"eslint-plugin-zod-import": "0.3.0",
"lint-staged": "16.1.2",
"oxlint": "1.4.0",
"secretlint": "10.1.0",
"simple-git-hooks": "2.13.0",
"sort-package-json": "3.2.1",
"tsup": "8.5.0",
"tsx": "4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.12.2",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}