forked from Anixuil/Kunlun-Design-Vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.79 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
75
76
77
78
79
80
81
82
83
84
{
"name": "kunlun-design",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "pnpm --filter ./packages/components test",
"coverage": "pnpm --filter ./packages/components coverage",
"docs:build": "pnpm --filter ./packages/docs docs:build",
"docs": "pnpm --filter ./packages/docs docs:dev",
"build": "node ./scripts/build.js",
"play": "pnpm --filter ./play dev",
"prettier": "prettier --write .",
"lint": "eslint --ext .ts packages/**/*.ts",
"lint:fix": "eslint --ext .ts packages/**/*.ts --fix",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@kunlun-design/components": "workspace:*",
"@kunlun-design/eslint-config": "workspace:*",
"@kunlun-design/utils": "workspace:*",
"@types/jest": "^29.4.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitest/coverage-c8": "^0.28.3",
"@vue/test-utils": "^2.2.8",
"babel-jest": "^29.4.1",
"c8": "^7.12.0",
"dts-gen": "^0.6.1",
"eslint": "^8.31.0",
"gsap": "^3.11.4",
"happy-dom": "^8.1.5",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"node-sass": "^8.0.0",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"sass-loader": "7.x",
"stylelint": "^14.16.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"unplugin-vue-define-options": "^1.1.3",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.28.3",
"vue": "^3.2.45"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --ext .ts packages/**/*.ts",
"eslint --ext .ts packages/**/*.ts --fix"
],
"package.json": [
"prettier --write ."
],
"*.vue": [
"prettier --write .",
"stylelint --fix"
],
"*.{scss,styl,html}": [
"stylelint --fix",
"prettier --write ."
]
},
"dependencies": {
"@kl-design/icons": "1.0.13",
"escape-html": "^1.0.3"
}
}