-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@web-analytics/monorepo",
"version": "0.0.0",
"description": "Website pageviews analytics tools.",
"author": "chengpeiquan <[email protected]>",
"homepage": "https://analytics.chengpeiquan.com",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vitepress --host",
"build": "tsx scripts/build",
"build:all": "tsx scripts/build/all",
"build:docs": "vitepress build",
"release": "tsx scripts/release",
"changelog": "tsx scripts/changelog",
"sync": "tsx scripts/sync",
"test": "vitest",
"coverage": "vitest run --coverage",
"preview": "vitepress preview",
"lint": "eslint packages --ext .js,.ts,.jsx,.tsx,.vue",
"format": "prettier --write packages",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"up": "npx npm-check-updates -u",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@bassist/utils": "^0.12.0"
},
"devDependencies": {
"@bassist/node-utils": "^0.2.1",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/coverage-c8": "^0.33.0",
"@withtypes/fs-extra": "^0.1.1",
"@withtypes/minimist": "^0.1.1",
"conventional-changelog-cli": "^3.0.0",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"simple-git-hooks": "^2.8.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vite-plugin-banner": "^0.7.0",
"vitepress": "1.0.0-beta.5",
"vitest": "^0.33.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec tsx scripts/verifyCommit $1"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}