v-wave
Version:
The material-ripple directive for Vue that actually works
78 lines (77 loc) • 1.97 kB
JSON
{
"name": "v-wave",
"version": "3.0.3",
"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": "tsup src/index.ts --clean --dts --format esm,cjs,iife --global-name VWave",
"dev": "tsup 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": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@vitest/coverage-v8": "^3.0.5",
"husky": "^9.1.5",
"jsdom": "^26.0.0",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"vitest": "^3.0.5",
"vue": "^3.5.4"
},
"peerDependencies": {
"vue": "^2.0.0 || ^3.0.0"
},
"dependencies": {
"@biomejs/biome": "^2.0.5",
"@nuxt/kit": "^3.13.1"
},
"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"
]
}