-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "ccpool-monorepo",
"description": "Monorepo for ccpool — fairly share one Claude Code subscription across a group.",
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"type-check": "turbo type-check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:bun": "bun run vitest run",
"demo": "pnpm --filter ccpool run demo",
"link:cli": "pnpm build && pnpm --filter ccpool run link",
"unlink:cli": "pnpm --filter ccpool run unlink",
"prepare": "husky"
},
"devDependencies": {
"vitest": "^2.1.8",
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"printWidth": 100,
"tabWidth": 2,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
}
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,mjs,mts,cjs,cts}": [
"prettier --write"
],
"*.{astro}": [
"prettier --write --parser=astro"
],
"*.{css,md,json,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
}
}