-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "comwit-monorepo",
"private": true,
"version": "1.0.0",
"packageManager": "yarn@1.22.22",
"description": "Monorepo for comwit — React state management for vibe coding",
"homepage": "https://library.comwit.io",
"repository": {
"type": "git",
"url": "git+https://github.com/meursyphus/comwit.git"
},
"bugs": {
"url": "https://github.com/meursyphus/comwit/issues"
},
"license": "MIT",
"author": "meursyphus",
"keywords": [
"react",
"state-management",
"vibe-coding",
"claude-code",
"llm"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky",
"format": "prettier . --write",
"format:check": "prettier . --check",
"format:staged": "lint-staged",
"dev:docs": "yarn workspace docs dev",
"dev:playground": "yarn workspace playground dev --port 3001",
"docs": "yarn workspace docs dev",
"playground": "yarn workspace playground dev --port 3001",
"dev:lib": "yarn workspace comwit dev",
"test": "yarn workspace comwit test",
"build": "yarn workspaces run build",
"dev": "yarn workspaces run dev"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx,css,scss,html}": [
"prettier --write"
]
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3"
}
}