-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
67
68
{
"name": "@jackdomleo7/vue3-library",
"description": "A Vue3 component library for my own enjoyment, learning, & development.",
"version": "0.0.0",
"repository": {
"type": "git",
"directory": "git+https://github.com/jackdomleo7/Vue3_Component_Library.git"
},
"author": {
"name": "Jack Domleo",
"url": "https://jackdomleo.dev",
"email": "jackdomleo7@gmail.com"
},
"bugs": {
"url": "https://github.com/jackdomleo7/Vue3_Component_Library/issues"
},
"type": "module",
"files": [
"dist",
"src"
],
"main": "./dist/jackdomleo7-vue3-library.umd.cjs",
"module": "./dist/jackdomleo7-vue3-library.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepack": "rimraf --glob *.tgz && pnpm run build",
"serve": "storybook dev -p 6006",
"serve:static": "http-serve docs -p 6007 -o",
"build:docs": "storybook build -o ./docs",
"build": "rimraf dist && vite build",
"test": "vitest run",
"test:report": "open-cli ./coverage/index.html",
"new-component": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./newComponent.ps1"
},
"dependencies": {
"vue": "^3.5.13",
"vue-inline-svg": "^3.1.4"
},
"devDependencies": {
"@storybook/addon-a11y": "8.6.12",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/vue3": "^8.6.12",
"@storybook/vue3-vite": "^8.6.12",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "^3.1.2",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^16.8.1",
"http-serve": "^1.0.1",
"open-cli": "^8.0.0",
"postcss": "^8.5.3",
"postcss-html": "^1.8.0",
"rimraf": "^5.0.10",
"sass": "^1.87.0",
"storybook": "^8.6.12",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-plugin-cp": "^4.0.8",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.2"
},
"peerDependencies": {
"vue": "3"
},
"engines": {
"node": ">=18"
}
}