-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
103 lines (103 loc) · 2.93 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
{
"name": "wave-ui",
"version": "3.18.0",
"description": "A UI framework for Vue.js 3 (and 2) with only the bright side. :sunny:",
"author": "Antoni Andre <[email protected]>",
"homepage": "https://antoniandre.github.io/wave-ui",
"repository": "https://github.com/antoniandre/wave-ui",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"main": "./dist/wave-ui.es.js",
"types": "./dist/types/index.d.ts",
"unpkg": "dist/wave-ui.umd.js",
"jsdelivr": "dist/wave-ui.umd.js",
"module": "./dist/wave-ui.es.js",
"files": [
"dist",
"src/wave-ui"
],
"exports": {
".": {
"import": {
"default": "./dist/wave-ui.es.js",
"types": "./dist/types/index.d.ts"
},
"require": {
"default": "./dist/wave-ui.umd.js",
"types": "./dist/types/index.d.ts"
}
},
"./package.json": "./package.json",
"./dist/*": "./dist/*",
"./src/wave-ui": "./src/wave-ui/index.js",
"./src/wave-ui/components": "./src/wave-ui/components/index.js",
"./src/wave-ui/*": "./src/wave-ui/*"
},
"type": "module",
"sideEffects": [
"*.css",
"*.scss",
"*.vue"
],
"keywords": [
"wave ui",
"ui framework",
"ui library",
"vue ui",
"vue3",
"vue framework",
"ui"
],
"scripts": {
"dev": "vite",
"build": "vite build --base /wave-ui/",
"build-types": "tsc -p ./tsconfig.json",
"build-bundle": "BUNDLE=true vite build && npm run build-types && mv ./dist/style.css ./dist/wave-ui.css",
"preview": "vite preview --base /wave-ui/",
"lint": "vite lint",
"publish-doc": "npm run build && npm run build-bundle && git add . && git commit -m 'Publish documentation on Github.' && git push && git push --tag"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@faker-js/faker": "^8.4.1",
"@mdi/font": "^7.4.47",
"@tsconfig/recommended": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"eslint": "^9.14.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "^9.30.0",
"font-awesome": "^4.7.0",
"globals": "^15.12.0",
"gsap": "^3.12.5",
"ionicons": "^4.6.3",
"material-design-icons": "^3.0.1",
"postcss": "^8.4.47",
"pug": "^3.0.3",
"rollup-plugin-delete": "^2.1.0",
"sass": "^1.80.6",
"simple-syntax-highlighter": "^3.0.10",
"splitpanes": "^3.1.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vueperslides": "^3.5.1",
"vuex": "^4.1.0"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
}
}