-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "alicebot",
"type": "module",
"version": "0.11.0",
"private": true,
"description": "A simple asynchronous python chat bot framework.",
"author": "st1020 <[email protected]>",
"license": "MIT",
"homepage": "https://docs.alicebot.dev/",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AliceBotProject/alicebot.git"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"changelog": "conventional-changelog -p angular -i docs/changelog.md -s -r 0",
"markdownlint": "markdownlint-cli2 '{*.md,docs/guide/**/*.md,packages/**/*.md}'",
"zhlint": "zhlint '{README.md,docs/guide/**/*.md,packages/**/*.md}'",
"pyright": "pyright",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"dependencies": {
"@iconify-json/mdi": "^1.2.2",
"unocss": "^65.4.2",
"vitepress": "^1.5.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@unocss/eslint-config": "^65.4.2",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"markdownlint-cli2": "^0.17.2",
"prettier": "^3.4.2",
"pyright": "^1.1.392",
"typescript-eslint": "^8.20.0",
"zhlint": "^0.8.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}