generated from obewds/vite-vue-ts-compo-pkg-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.81 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
{
"name": "@obewds/vue-el",
"description": "The @obewds/vue-el modular design system component for Vue.js",
"version": "1.6.2",
"author": "@oberocks",
"homepage": "https://obewds.github.io/vue-el/",
"license": "MIT",
"main": "./dist/vue-el.umd.js",
"module": "./dist/vue-el.es.js",
"browser": "./dist/vue-el.iife.js",
"exports": {
".": {
"import": "./dist/vue-el.es.js",
"require": "./dist/vue-el.umd.js"
},
"./src": "./src/components/VueEl.vue"
},
"files": [
"dist",
"src/components",
"tests"
],
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"tsbuild": "npx rimraf dist && vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
"preview": "vite preview",
"test": "vitest --dom",
"coverage": "vitest run --dom --coverage",
"docs:dev": "vitepress dev docs --port 8080",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs --port 8080",
"pkg:tsbundle": "npm run tsbuild && npm run docs:build && node scripts/cleanup.js",
"pkg:org": "npm config set scope obewds",
"pkg:login": "npm adduser",
"pkg:publish": "npm publish --access public",
"changelog": "auto-changelog --package --unreleased --backfill-limit 20",
"git: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",
"generate": "npx rimraf dist && npm run pkg:tsbundle && npm run changelog"
},
"dependencies": {
"@obewds/vue-component-helpers": "^1.1.2",
"@obewds/vue-validators": "^1.2.4"
},
"devDependencies": {
"@obewds/obewds-tw-config": "^1.1.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.8.3",
"@vitejs/plugin-vue": "^3.1.2",
"@vitest/coverage-c8": "^0.23.4",
"@vue/test-utils": "^2.1.0",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.12",
"fs-extra": "^10.1.0",
"happy-dom": "^7.1.1",
"lodash": "^4.17.21",
"postcss": "^8.4.17",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"vite": "^3.1.6",
"vitepress": "^1.0.0-alpha.19",
"vitest": "^0.23.4",
"vue": "^3.2.40",
"vue-tsc": "^0.40.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obewds/vue-el.git"
},
"bugs": {
"url": "https://github.com/obewds/vue-el/issues"
},
"keywords": [
"vue",
"vite",
"OBE:WDS",
"tailwindcss",
"rollup",
"vitepress",
"postcss",
"vue3",
"Vue.js",
"Tailwind CSS"
]
}