-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "day-ui",
"version": "0.12.0",
"description": "A Component For Vue3",
"main": "./dist/day-ui.umd.js",
"module": "./dist/day-ui.es.js",
"typings": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/day-ui.es.js",
"require": "./dist/day-ui.umd.js"
}
},
"types": "dist/src/index.d.ts",
"author": "dewfall",
"license": "MIT",
"scripts": {
"dev": "vitepress-fc dev --root=docs",
"build": "vite build && yarn type",
"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/**/*.{vue,js,ts,tsx}",
"lint-fix": "yarn lint -- --fix",
"ls-lint": "ls-lint"
},
"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",
"@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",
"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",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.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.0.2",
"vitepress-for-component": "latest",
"vue": "^3.0.2",
"vue-jest": "^5.0.0-alpha.6"
},
"keywords": [
"vue",
"vue3",
"components"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}