-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
{
"name": "vue-touch-ripple",
"version": "4.1.1",
"description": "Touch ripple component for Vue",
"author": "Surmon",
"keywords": [
"vue touch ripple",
"vue ripple",
"vue touch"
],
"license": "MIT",
"homepage": "https://github.surmon.me/vue-touch-ripple",
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/vue-touch-ripple.git"
},
"files": [
"CHANGELOG.md",
"dist",
"style.css"
],
"sideEffects": false,
"types": "./dist/vue-touch-ripple.esm.d.ts",
"main": "./dist/vue-touch-ripple.umd.js",
"module": "./dist/vue-touch-ripple.esm.js",
"exports": {
".": {
"import": "./dist/vue-touch-ripple.esm.js",
"require": "./dist/vue-touch-ripple.umd.js"
},
"./dist/*": "./dist/*",
"./css": "./style.css",
"./style.css": "./style.css",
"./dist/vue-touch-ripple.esm.css": "./dist/vue-touch-ripple.esm.css",
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "libundler",
"test": "vitest run --coverage",
"lint": "eslint --ext .js,.ts,.vue src test",
"rebirth": "npm run lint && npm run test && npm run build",
"restyle": "cp \"./dist/vue-touch-ripple.esm.css\" \"./style.css\"",
"release": ". ./scripts/release.sh"
},
"peerDependencies": {
"vue": "3.x"
},
"devDependencies": {
"@surmon-china/libundler": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vue/test-utils": "^2.0.0",
"c8": "^7.12.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^20.0.0",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"typescript": "^4.7.0",
"vite": "^3.0.0",
"vitest": "^0.18.1",
"vue": "^3.2.31"
}
}