-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@obewds/vueventus",
"description": "A component library and styling management system for modern Vue.js, Tailwind CSS, and Typescript apps",
"version": "0.61.7",
"author": "@oberocks",
"homepage": "https://obewds.github.io/vueventus/",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"ts:build": "npx rimraf dist && npm run build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"test": "vitest --dom",
"coverage": "vitest run --dom --coverage",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"changelog": "auto-changelog --package --unreleased --backfill-limit 20",
"tag": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"cleanup": "node scripts/cleanup.mjs",
"cli:mjs": "node scripts/generateCliMjsVersions.mjs",
"originals": "node scripts/copyToDist.mjs",
"pkg:org": "npm config set scope obewds",
"generate": "npx rimraf dist && npx rimraf docs/.vitepress/dist && npm run build && vue-tsc --emitDeclarationOnly && tsc && npm run cli:mjs && npm run docs:build && npm run originals",
"bump:patch": "npm version patch && npm run generate && npm run changelog",
"bump:minor": "npm version minor && npm run generate && npm run changelog",
"bump:major": "npm version major && npm run generate && npm run changelog"
},
"dependencies": {
"@headlessui/tailwindcss": "^0.2.0",
"@headlessui/vue": "^1.7.16",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@thebespokepixel/es-tinycolor": "^3.1.0",
"deepmerge": "^4.3.1",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.12",
"rimraf": "^5.0.5",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.3.6",
"vue": "^3.3.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@vitejs/plugin-vue": "^4.5.2",
"@vitest/coverage-v8": "^0.34.6",
"@vue/test-utils": "^2.4.3",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.16",
"chalk": "^5.3.0",
"happy-dom": "^12.10.3",
"markdown-it-include": "^2.0.0",
"postcss": "^8.4.32",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vitepress": "^1.0.0-rc.31",
"vitest": "^0.34.6",
"vue-router": "^4.2.4",
"vue-tsc": "^1.8.8"
},
"overrides": {
"magic-string": {
"sourcemap-codec": {
"@jridgewell/sourcemap-codec": "1.4.15"
}
}
},
"sideEffects": false,
"main": "./dist/vueventus.cjs",
"module": "./dist/vueventus.mjs",
"files": [
"cli",
"dist",
"src/components",
"src/configs",
"src/data",
"src/helpers",
"src/types",
"src/validators"
],
"bin": {
"vueventus": "./cli/index.mjs",
"vv-update": "./cli/updater.mjs",
"vv-update-locals": "./cli/updateLocals.mjs"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vueventus.mjs",
"require": "./dist/vueventus.cjs"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*",
"./src/*": "./src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obewds/vueventus.git"
},
"bugs": {
"url": "https://github.com/obewds/vueventus/issues"
},
"keywords": [
"vue",
"vueventus",
"vite",
"tailwindcss",
"obewds",
"typescript",
"rollup",
"vitepress",
"postcss",
"nodejs"
]
}