-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.14 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
{
"name": "vueless",
"version": "0.0.679",
"license": "MIT",
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
"keywords": [
"vueless",
"vue",
"vue.js",
"vue3",
"ui library",
"component library",
"vue framework",
"design system",
"tailwind",
"tailwindcss",
"unstyled",
"styleless",
"headlessui",
"ui"
],
"homepage": "https://vueless.com",
"author": "Johnny Grid",
"main": "index.ts",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"pre:start": "npx node .scripts/icons",
"dev:docs": "npm run pre:start && storybook dev -p 6006 --docs --no-open",
"dev": "npm run pre:start && STORYBOOK_FULL=1 storybook dev -p 6006 --no-open",
"build": "npm run pre:start && storybook build --docs",
"preview": "vite preview --host --outDir=storybook-static",
"ts:check": "vue-tsc --build --force",
"release:prepare": "npm run pre:start && rm -rf dist && mkdir -p dist && cp -r src/. package.json LICENSE README.md dist/",
"release:beta": "release-it --ci --npm.publish --preRelease=beta --increment=prerelease",
"release:patch": "release-it patch --ci --npm.publish",
"release:minor": "release-it minor --ci --npm.publish --git.tag --github.release",
"release:major": "release-it major --ci --npm.publish --git.tag --github.release",
"lint": "eslint --no-fix src/ .storybook/",
"lint:fix": "eslint --fix src/ .storybook/",
"lint:ci": "eslint --no-fix --max-warnings=0"
},
"bin": {
"vueless": "./bin/index.js"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.9",
"cva": "^1.0.0-beta.1",
"lodash-es": "^4.17.21",
"svgo": "^3.3.2",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tippy.js": "^6.3.7",
"unplugin-vue-components": "^0.27.4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@material-symbols/svg-500": "^0.17.4",
"@release-it/bumper": "^6.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.7",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/eslint-plugin": "^1.1.7",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.1",
"@vue/tsconfig": "^0.5.1",
"@vueless/storybook": "^0.0.59",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.2",
"eslint": "^9.12.0",
"eslint-plugin-storybook": "^0.10.0--canary.156.ce8985b.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue": "^9.25.0",
"globals": "^15.11.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"release-it": "^17.2.1",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-compression": "^0.5.1",
"vue": "^3.5.4",
"vue-i18n": "^10.0.4",
"vue-router": "^4.3.2",
"vue-tsc": "^2.1.6"
},
"resolutions": {
"jackspeak": "2.3.6"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuelessjs/vueless.git"
},
"bugs": {
"url": "https://github.com/vuelessjs/vueless/issues"
}
}