-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.36 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
54
55
56
57
{
"name": "vue3-tailwind-modal",
"version": "1.0.3",
"description": "A simple TailwindCSS modal, written in Vue3.",
"keywords": [
"vue3",
"modal",
"lightbox",
"tailwind",
"vue",
"vuejs"
],
"homepage": "https://github.com/Nathanjms/vue3-tailwind-modal#readme",
"bugs": {
"url": "https://github.com/Nathanjms/vue3-tailwind-modal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nathanjms/vue3-tailwind-modal.git"
},
"license": "MIT",
"author": "Nathan James <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"global.d.ts"
],
"scripts": {
"dev:install": "(cd ./playground && npm install)",
"dev:run": "(cd ./playground && npm run dev)",
"dev:run-pack": "(cd ./playground && npm run dev:usepack)",
"prepublishOnly": "npm run build:vite",
"build:vite": "vite build"
},
"devDependencies": {
"@types/node": "^20.12.2",
"@vitejs/plugin-vue": "^5.0.4",
"tsup": "^8.0.2",
"typescript": "~5.4.3",
"vite": "^5.2.7",
"vite-plugin-dts": "^3.8.1",
"vue-tsc": "^2.0.7"
},
"peerDependencies": {
"vue": "^3"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
}
}