-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "kanbu",
"version": "0.1.0",
"private": true,
"description": "Self-hosted project management for people who work with AI agents",
"author": "Robin Waslander",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hydro13/kanbu.git"
},
"homepage": "https://hydro13.github.io/kanbu/",
"bugs": {
"url": "https://github.com/hydro13/kanbu/issues"
},
"keywords": [
"project-management",
"task-management",
"collaboration",
"acl",
"permissions",
"real-time",
"typescript",
"react"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"lint": "pnpm -r lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean && rm -rf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"eslint-plugin-storybook": "^10.1.11",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.53.0"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,mjs,cjs}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}