-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "vue3-toggle-button",
"version": "1.0.3",
"author": {
"email": "[email protected]",
"name": "Brad Evans",
"url": "https://rightclick.com.au"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bradintheusa/vue3-toggle-button"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly --project tsconfig.dist.json && move dist/lib dist/types && del favicon.ico",
"build:site": "vue-tsc --noEmit --project tsconfig.site.json && vite --config vite.site.config.ts build",
"preview": "vite preview"
},
"types": "./dist/types/main.d.ts",
"files": [
"dist/*"
],
"main": "./dist/vue3-toggle-button.umd.js",
"module": "./dist/vue3-toggle-button.es.js",
"dependencies": {
"sass": "^1.53.0",
"terser": "^5.14.1"
},
"peerDependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@types/node": "^17.0.40",
"@types/sortablejs": "^1.13.0",
"@vitejs/plugin-vue": "3.0.0-beta.0",
"typescript": "^4.7.4",
"vite": "3.0.7",
"vue-tsc": "^0.38.2"
}
}