-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 919 Bytes
/
package.json
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
{
"name": "house",
"version": "1.0.0",
"description": "",
"packageManager": "[email protected]",
"type": "module",
"main": "index.js",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --port 6889",
"docs:update": "sh ./scripts/update.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^2.17.0",
"@types/node": "^20.12.11",
"eslint": "^9.2.0",
"unocss": "^0.59.4",
"unplugin-auto-import": "^0.17.5",
"vitepress": "^1.1.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
},
"overrides": {
"rollup": "npm:@rollup/wasm-node"
}
},
"eslintConfig": {
"extends": "@antfu"
},
"dependencies": {
"dayjs": "^1.11.11"
}
}