forked from kakajun/vue3-sketch-ruler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.28 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
106
107
108
109
110
111
{
"name": "vue3-sketch-ruler",
"version": "1.3.3",
"author": "kakajun <253495832@qq.com>",
"license": "MIT",
"private": false,
"files": [
"lib",
"types",
"bin",
"scripts"
],
"repository": {
"type": "git",
"url": "https://github.com/kakajun/vue3-sketch-ruler/tree/1x"
},
"bin": {
"vue-fix": "bin/vue-fix.js",
"vue-switch": "bin/vue-switch.js"
},
"sideEffects": false,
"typings": "types/index.d.ts",
"main": "lib/index.es.js",
"module": "lib/index.es.js",
"style": "lib/style.css",
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"install2": "cd example/v2 && yarn install",
"switch2": "node bin/vue-switch.js 2",
"switch3": "node bin/vue-switch.js 3",
"dev": "npx vue-demi-switch 3 && vite --config vite.demo.js",
"build": "npm run build3 && npm run build2",
"build3": "npx vue-demi-switch 3 && vite build",
"build2": "npx vue-demi-switch 2 && cd example/v2 && vite build",
"dev2": "npx vue-demi-switch 2 && cd example/v2 && vite --config vite.demo.js",
"build:demo": "npx vue-demi-switch 3 && vite build --config vite.demo.js",
"build:demo2": "npx vue-demi-switch 2 && cd example/v2 && vite build --config vite.demo.js",
"precommit": "lint-staged",
"lint-fix": "eslint --fix --ext .vue,.js,.ts",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"format": "prettier-eslint --write src/**/*.{js,vue} && prettier-eslint --write",
"css": "cross-env stylelint src/**/*.{vue,scss} --fix",
"pretty": "pretty-quick --staged",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"*.{ts,tsx,js,vue,less}": "prettier --write",
"*.{ts,tsx,js,vue}": "eslint --fix",
"*.{vue,css,less}": "stylelint --fix"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vitejs/plugin-vue": "^1.9.3",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^2.0.0-rc.16",
"babel-jest": "^27.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "7.20.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"sass": "^1.43.4",
"stylelint": "14.0.1",
"stylelint-config-standard": "23.0.0",
"stylelint-order": "5.0.0",
"typescript": "^4.4.4",
"vite": "^2.6.10",
"vite-plugin-dts": "^0.9.2",
"vue": "^3.2.20",
"vue-demi": "^0.12.1",
"vue-jest": "^5.0.0-alpha.10"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.6.0 || ^3.2.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"keywords": [
"vue",
"vue3",
"ruler",
"javascript",
"sketch-ruler",
"vue-sketch-ruler",
"room"
],
"bugs": {
"url": "https://github.com/kakajun/vue3-sketch-ruler/issues"
}
}