-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 872 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
{
"name": "pyreactivity",
"version": "0.0.6",
"description": "A Python package for reactivity like Vue.js.",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0 -s && git add CHANGELOG.md",
"commit": "cz",
"test": "pytest",
"typecheck": "pyright"
},
"keywords": [],
"author": "Zhaoji Wang",
"license": "Apache-2.0",
"devDependencies": {
"@vuepress/client": "2.0.0-beta.60",
"vue": "^3.2.45",
"vuepress": "2.0.0-beta.60"
},
"dependencies": {
"commitizen": "^4.2.6",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}