-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "thoughts-ui",
"version": "0.0.1",
"private": true,
"description": "业务组件积累",
"main": "./dist/thoughts-ui.umd.js",
"module": "./dist/thoughts-ui.es.js",
"style": "./dist/style.css",
"exports": {
".": {
"import": "./dist/thoughts-ui.es.js",
"require": "./dist/thoughts-ui.umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"types": "dist/src/index.d.ts",
"workspaces": [
"packages/*"
],
"author": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "vitepress-fc dev --root=docs --host",
"type": "tsc -d",
"test": "jest",
"docs-build": "rimraf docs/dist && cross-env NODE_ENV=production vitepress-fc build --root=docs",
"docs-serve": "cross-env NODE_ENV=production vitepress-fc serve --root=docs",
"docs-build-serve": "cross-env NODE_ENV=true yarn docs-build && yarn docs-serve",
"docs-deploy": "gh-pages -d docs/dist -t true",
"docs-build-deploy": "yarn docs-build && yarn docs-deploy",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint src/components/ src/utils",
"lint-fix": "yarn lint -- --fix",
"ls-lint": "ls-lint",
"newComp": "ts-node scripts/newComp.js"
},
"devDependencies": {
"@ls-lint/ls-lint": "^1.9.2",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@vitejs/plugin-vue": "^1.1.4",
"@vitejs/plugin-vue-jsx": "^1.3.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-beta.10",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"babel-jest": "^26.6.3",
"chalk": "^5.0.0",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"fs-extra": "^10.0.0",
"gh-pages": "^3.1.0",
"glob": "^7.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"progress-estimator": "^0.3.0",
"rimraf": "^3.0.2",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0-beta.11",
"ts-jest": "^26.4.4",
"typescript": "^4.2.2",
"vite": "^2.4.1",
"vitepress-for-component": "^0.16.2",
"vue-jest": "^5.0.0-alpha.6"
},
"keywords": [
"vue",
"vue3",
"components"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@element-plus/components": "^0.0.5",
"@element-plus/hooks": "^0.0.5",
"@element-plus/icons": "^0.0.11",
"@element-plus/utils": "^0.0.5",
"@vueuse/core": "^6.7.3",
"element-plus": "1.2.0-beta.4",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"vue": "^3.2.24"
}
}