-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.47 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
{
"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.1",
"unocss": "^0.63.6",
"vitepress": "^1.4.3",
"vue": "^3.5.12"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@types/node": "^22.8.7",
"@unocss/eslint-plugin": "^0.63.6",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.14.0",
"markdownlint-cli2": "^0.14.0",
"prettier": "^3.3.3",
"pyright": "^1.1.387",
"zhlint": "^0.8.2"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}