-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
{
"version": "0.0.7",
"type": "module",
"packageManager": "[email protected]",
"description": "",
"private": true,
"scripts": {
"gen": "bash ./scripts/add-component.sh",
"dev": "esno scripts/dev-packages.ts",
"build": "esno scripts/build.ts",
"dev:docs": "cd docs && pnpm run dev",
"dev:playground": "cd playground && pnpm run dev",
"prepare": "husky install",
"lint": "eslint --fix --ext .js,.ts,.tsx,.vue .",
"test": "vitest run",
"test:cover": "vitest run --coverage",
"test:dev": "vitest dev",
"typecheck": "tsc --noEmit && vue-tsc --noEmit",
"release": "bumpp package.json packages/**/package.json"
},
"lint-staged": {
"packages/**": [
"prettier --config .prettierrc --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteDanceYouthTrainCamp/lucky-design.git"
},
"keywords": [
"components"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ByteDanceYouthTrainCamp/lucky-design/issues"
},
"homepage": "https://github.com/ByteDanceYouthTrainCamp/lucky-design#readme",
"dependencies": {
"lucky-design": "workspace:*",
"vue": "^3.2.45"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.1",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"bumpp": "^8.2.1",
"chokidar": "^3.5.3",
"commitlint": "^17.4.2",
"eslint": "8.31.0",
"esno": "^0.16.3",
"execa": "^6.1.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.0",
"jsdom": "^21.0.0",
"lint-staged": "^13.1.0",
"perfect-debounce": "^0.1.3",
"picocolors": "^1.0.0",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"unocss": "^0.49.0",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.27.2",
"vue-tsc": "^1.0.11"
}
}