-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"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.6.8",
"vitepress": "^2.0.0-alpha.17",
"vue": "^3.5.32"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@unocss/eslint-config": "^66.6.8",
"conventional-changelog": "^7.2.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.2",
"typescript-eslint": "^8.58.1",
"vue-eslint-parser": "^10.4.0"
}
}