-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.93 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.93 KB
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": "v-wave",
"version": "3.0.4",
"license": "MIT",
"description": "The material-ripple directive for Vue that actually works",
"author": "Justin Taddei <justin@justintaddei.com> (https://justintaddei.com/)",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.global.js",
"files": [
"dist/**/*",
"nuxt/**/*",
"src/options.ts"
],
"exports": {
"./nuxt": {
"import": "./nuxt/index.ts",
"require": "./nuxt/v2/index.cjs"
},
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsdown src/index.ts --clean --dts --format esm,cjs,iife --global-name VWave",
"dev": "tsdown src/index.ts --watch --dts --format esm,cjs,iife --global-name VWave",
"lint": "biome check --write && tsc",
"lint:no-write": "biome check && tsc",
"test": "vitest run --run",
"test:watch": "vitest",
"test:coverage": "vitest run --run --coverage",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@vitest/coverage-v8": "^4.1.3",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.3",
"vue": "^3.5.32"
},
"peerDependencies": {
"vue": "^2.0.0 || ^3.0.0"
},
"dependencies": {
"@nuxt/kit": "^4.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justintaddei/v-wave.git"
},
"bugs": {
"url": "https://github.com/justintaddei/v-wave/issues"
},
"homepage": "https://github.com/justintaddei/v-wave#readme",
"keywords": [
"vue",
"directive",
"wave",
"ripple",
"v-ripple",
"vue-ripple",
"vue-rip",
"v-ripple-effect",
"v-ripple-directive",
"material",
"material ripple",
"animation"
]
}