-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "ui",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.15.1",
"description": "The UI component library specially adapted for AI programming.",
"author": "litingyes",
"license": "MIT",
"keywords": [
"ui",
"component",
"ai",
"coding",
"tailwindcss",
"vue"
],
"scripts": {
"build:docs": "pnpm --filter @aibetter/ui-docs generate",
"build": "pnpm --filter \"./packages/**\" build",
"postbuild": "eslint --fix ./packages/theme/src/css/theme.css",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bump": "changeset",
"release": "changeset version",
"prepare": "husky && aib sync",
"ci:publish": "pnpm build && changeset publish"
},
"devDependencies": {
"@aibetter/aib": "^0.1.3",
"@antfu/eslint-config": "^5.2.1",
"@changesets/cli": "^2.29.6",
"@eslint-react/eslint-plugin": "^1.52.6",
"eslint": "^9.33.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"lint-staged": "^16.1.5",
"tailwindcss": "catalog:",
"typescript": "^5.9.2"
},
"lint-staged": {
"*": "eslint --fix"
}
}