-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "alicebot",
"type": "module",
"version": "0.11.0",
"private": true,
"description": "A simple asynchronous python chat bot framework.",
"author": "st1020 <stone_1020@qq.com>",
"license": "MIT",
"homepage": "https://docs.alicebot.dev/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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}'",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"dependencies": {
"@iconify-json/mdi": "^1.2.3",
"unocss": "^66.3.3",
"vitepress": "^1.6.3",
"vue": "^3.5.18"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^22.16.5",
"@unocss/eslint-config": "^66.3.3",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.3.0",
"globals": "^16.3.0",
"markdownlint-cli2": "^0.18.1",
"prettier": "^3.6.2",
"typescript-eslint": "^8.38.0",
"vue-eslint-parser": "^10.2.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}