-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "vump",
"private": true,
"version": "0.1.0",
"description": "🚴类Vue语法的微信小程序轻量级框架, 基于原生开发标准",
"keywords": [
"typescript",
"charrue",
"miniprogram",
"vitest"
],
"license": "MIT",
"scripts": {
"build": "pnpm --filter=@charrue/vump run build",
"lint": "pnpm --filter=@charrue/vump run lint",
"docs:dev": "pnpm --filter=docs run dev",
"docs:deploy": "pnpm --filter=docs run deploy",
"prepare": "husky install",
"test": "pnpm --filter=@charrue/vump run test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"lint-staged": {
"!(*.d).ts": "npm run lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@charrue/eslint-config-typescript": "^0.3.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/node": "^18.11.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.6.2",
"tslib": "^2.3.1",
"tsup": "^6.5.0",
"typescript": "^4.5.2",
"vite": "^2.8.1",
"vitest": "^0.3.2"
}
}