-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "vue-curtains",
"version": "1.0.2",
"description": "vue-curtains is an attempt at converting curtains.js WebGL classes into reusable Vue components.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"keywords": [
"vue",
"webgl",
"curtains.js",
"curtainsjs"
],
"author": {
"name": "Martin Laxenaire",
"email": "[email protected]",
"url": "https://twitter.com/webdesign_ml"
},
"homepage": "https://github.com/martinlaxenaire/vue-curtains",
"bugs": {
"url": "https://github.com/martinlaxenaire/vue-curtains/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/martinlaxenaire/vue-curtains.git"
},
"peerDependencies": {
"vue": "^3.2.21"
},
"dependencies": {
"curtainsjs": "^8.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup": "^2.75.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-vue": "^6.0.0"
}
}