forked from juliandreas/vue-toggles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 KB
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
60
61
62
63
64
65
66
{
"name": "vue-toggles",
"version": "2.1.0",
"description": "A highly customizable and accessible toggle component for Vue.js 3",
"homepage": "https://github.com/juliandreas/vue-toggles#readme",
"bugs": {
"url": "https://github.com/juliandreas/vue-toggles/issues"
},
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/juliandreas/vue-toggles.git"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-toggles.umd.cjs",
"module": "./dist/vue-toggles.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-toggles.js",
"require": "./dist/vue-toggles.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"test:unit": "vitest",
"test:unit:once": "vitest run",
"deploy": "npm run test:unit:once && npm run build && npm publish",
"beta": "npm run test:unit:once && npm run build && npm publish --tag beta"
},
"peerDependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@types/node": "^20.5.6",
"@vitejs/plugin-vue": "^4.3.1",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.46.0",
"eslint-plugin-vue": "^9.16.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vitest": "^0.34.2",
"vue-tsc": "^1.8.8"
},
"keywords": [
"vue",
"vuejs",
"vue.js",
"vue3",
"toggle",
"checkbox",
"switch",
"library",
"component library",
"accessibility",
"a11y"
]
}