-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "@appoly/vue-sheet",
"version": "1.0.0",
"description": "A simple sheet component built with Vue.js",
"type": "module",
"files": [
"dist"
],
"main": "dist/vue-sheet.umd.cjs",
"module": "dist/vue-sheet.js",
"exports": {
".": {
"import": "./dist/vue-sheet.js",
"require": "./dist/vue-sheet.umd.cjs",
"default": "./dist/vue-sheet.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build --mode lib",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.2.45"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"sass": "^1.58.0",
"vite": "^4.1.0"
},
"author": {
"name": "Calum Chamberlain",
"email": "calum@appoly.co.uk"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/appoly/vue-sheet/issues"
},
"homepage": "https://github.com/appoly/vue-sheet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/appoly/vue-sheet.git"
},
"keywords": [
"vuejs",
"sheets",
"sheet",
"popup",
"toast",
"dialog"
]
}