-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "1llest-waveform-vue",
"version": "1.2.0",
"author": "leyoonafr",
"license": "MIT",
"description": "A lightweight and controllable audio visualization vue3 plugin",
"keywords": [
"vue3 plugin",
"waveform",
"audio visualization",
"web audio api",
"vue plugin"
],
"homepage": "https://github.com/codeacme17/1llest-waveform-vue#readme",
"repository": {
"type": "git",
"url": "https://github.com/codeacme17/1llest-waveform-vue"
},
"files": [
"lib"
],
"main": "./lib/1llest-waveform-vue.umd.js",
"module": "./lib/1llest-waveform-vue.mjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"import": "./lib/1llest-waveform-vue.mjs",
"require": "./lib/1llest-waveform-vue.umd.js"
},
"./lib/style.css": "./lib/style.css"
},
"scripts": {
"build": "vite build --outDir lib",
"build:types": "vue-tsc --declaration --emitDeclarationOnly --declarationDir ./lib/types",
"lint": "eslint src --ext .ts,.vue",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.2.41"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vue-tsc": "^1.2.0"
}
}