-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "vue-verovio-canvas",
"version": "1.4.4",
"description": "A Vue 3 component to display music scores with Verovio.",
"author": "Wolfgang Drescher",
"repository": {
"type": "git",
"url": "git+https://github.com/WolfgangDrescher/vue-verovio-canvas.git"
},
"bugs": {
"url": "https://github.com/WolfgangDrescher/vue-verovio-canvas/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-verovio-canvas.umd.cjs",
"module": "./dist/vue-verovio-canvas.js",
"exports": {
".": {
"import": "./dist/vue-verovio-canvas.js",
"require": "./dist/vue-verovio-canvas.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite --config vite.demo.config.js",
"build": "vite build",
"preview": "vite preview --port 5050",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.6.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.18.1",
"prettier": "^3.1.0",
"verovio": "^4.3.1",
"vite": "^5.0.2",
"vue": "^3.5.0"
},
"peerDependencies": {
"verovio": "^3.15.0 || ^4.0.0",
"vue": "^3.2.0"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"uuid": "^10.0.0"
}
}