-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 987 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 987 Bytes
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
{
"name": "ai-context",
"type": "module",
"packageManager": "pnpm@10.14.0",
"description": "Build the AI that understands you best",
"license": "CCO-1.0",
"scripts": {
"docs:dev": "vitepress dev docs --port 9001",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"es-toolkit": "^1.39.9"
},
"devDependencies": {
"@aibetter/aib": "^0.1.1",
"@antfu/eslint-config": "^5.0.0",
"@iconify/json": "^2.2.363",
"@iconify/tailwind4": "^1.0.6",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^22.16.5",
"eslint": "^9.31.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vitepress": "2.0.0-alpha.10",
"vitepress-plugin-llms": "^1.7.1"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}