forked from winduum/winduum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.58 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
118
119
120
{
"name": "winduum",
"version": "1.2.1",
"type": "module",
"types": "types/index.d.ts",
"main": "plugin/index.cjs",
"module": "plugin/index.js",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"build-prod": "vite build -c vite.config.prod.js",
"eslint": "eslint 'src/**/*.js'",
"eslint-fix": "eslint 'src/**/*.js' --fix",
"stylelint": "npx stylelint 'src/**/*.css'",
"stylelint-fix": "npx stylelint 'src/**/*.css' --fix",
"plugin": "rollup plugin/index.js --file plugin/index.cjs -f cjs --exports named",
"tsc": "tsc",
"dts": "node dts.js",
"publish-next": "npm publish --tag next"
},
"devDependencies": {
"@floating-ui/dom": "^1.6.5",
"@stylistic/stylelint-config": "^1.0.1",
"@tailwindcss/container-queries": "^0.1.1",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"css-has-pseudo": "^6.0.5",
"dts-buddy": "^0.4.7",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"fast-glob": "^3.3.2",
"postcss": "^8.4.38",
"postcss-custom-media": "^10.0.6",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.5",
"slide-element": "^2.3.1",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vue": "^3.4.27"
},
"files": [
"index.js",
"tailwind.config.js",
"dist",
"src",
"plugin",
"types"
],
"exports": {
".": {
"default": "./plugin/index.js",
"require": "./plugin/index.cjs",
"import": "./plugin/index.js",
"types": "./plugin/types.d.ts"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./plugin/*": "./plugin/*",
"./src/components/carousel": {
"default": "./src/components/carousel/index.js",
"types": "./src/components/carousel/index.d.ts"
},
"./src/components/compare": {
"default": "./src/components/compare/index.js",
"types": "./src/components/compare/index.d.ts"
},
"./src/components/details": {
"default": "./src/components/details/index.js",
"types": "./src/components/details/index.d.ts"
},
"./src/components/dialog": {
"default": "./src/components/dialog/index.js",
"types": "./src/components/dialog/index.d.ts"
},
"./src/components/drawer": {
"default": "./src/components/drawer/index.js",
"types": "./src/components/drawer/index.d.ts"
},
"./src/components/form": {
"default": "./src/components/form/index.js",
"types": "./src/components/form/index.d.ts"
},
"./src/components/tabs": {
"default": "./src/components/tabs/index.js",
"types": "./src/components/tabs/index.d.ts"
},
"./src/components/toaster": {
"default": "./src/components/toaster/index.js",
"types": "./src/components/toaster/index.d.ts"
},
"./src/components/popover": {
"default": "./src/components/popover/index.js",
"types": "./src/components/popover/index.d.ts"
},
"./src/ui/range": {
"default": "./src/ui/range/index.js",
"types": "./src/ui/range/index.d.ts"
},
"./src/utilities/ripple": {
"default": "./src/utilities/ripple/index.js",
"types": "./src/utilities/ripple/index.d.ts"
},
"./src/utilities/swap": {
"default": "./src/utilities/ripple/index.js",
"types": "./src/utilities/ripple/index.d.ts"
}
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winduum/winduum.git"
}
}