-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://json.schemastore.org/package",
"name": "depazer",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "A CLI tool for analyzing package dependencies",
"bugs": {
"url": "https://github.com/depazer/depazer/issues"
},
"homepage": "https://github.com/depazer/depazer",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.6.0"
},
"license": "MIT",
"scripts": {
"dev:cli": "pnpm --filter cli dev",
"dev:web": "pnpm --filter web dev",
"prepare": "husky install",
"build": "turbo build --no-daemon",
"preview": "pnpm --filter cli preview",
"commit": "git add . && cz",
"commit:changeset": "changeset add && git add . && cz",
"lint": "turbo lint --no-daemon",
"test": "turbo test --no-daemon",
"test:cov": "vitest run --coverage",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"changeset-version": "changeset version",
"changeset-publish": "pnpm build && changeset publish"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
"*.json": "prettier --write"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/config-conventional": "^17.7.0",
"@rushstack/eslint-patch": "^1.3.3",
"@types/node": "^20.5.9",
"@vitest/coverage-v8": "^0.34.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"commitizen": "^4.3.0",
"commitlint": "^17.7.1",
"cz-git": "^1.7.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"tsx": "^3.12.8",
"turbo": "^1.10.13",
"typescript": "^5.2.2",
"vitepress": "1.0.0-rc.4",
"vitest": "^0.34.3"
}
}