-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.31 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
{
"name": "oui-kit",
"type": "module",
"version": "0.24.4",
"author": {
"email": "[email protected]",
"name": "Dirk Holtwick",
"url": "https://holtwick.de"
},
"license": "MIT",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"homepage": "https://github.com/holtwick/oui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/holtwick/oui.git"
},
"bugs": {
"url": "https://github.com/holtwick/oui/issues"
},
"keywords": [
"css",
"framework",
"stylus",
"oui",
"oui-kit",
"vue",
"ui",
"typescript",
"headless"
],
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./css": "./dist/style.css",
"./default-app": "./stylus/default-app.styl",
"./default-page": "./stylus/default-page.styl",
"./lib": "./lib/index.styl",
"./stylus": "./stylus/index.styl",
"./theme": "./stylus/theme.styl"
},
"module": "./dist/lib.js",
"types": "./dist/lib.d.ts",
"files": [
"dist/*.css",
"dist/*.js",
"dist/*.ts",
"lib/**/*.styl",
"stylus/**/*.styl"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "vite build",
"build:demo": "BUILD_DEMO=1 vite build",
"check": "vue-tsc --noEmit",
"dev": "vite --host --open",
"generate-pwa-assets": "npx pwa-assets-generator",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"preview": "vite preview",
"start": "nr dev",
"test": "vitest",
"upload": "nr build:demo && rsync -rvz dist/* cy:public_html/oui.holtwick.de"
},
"dependencies": {
"@floating-ui/vue": "^1.1.5",
"@vueuse/core": "^11.2.0",
"vue": "^3.5.12",
"zeed": "^0.25.7"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8",
"@antfu/ni": "^0.23.0",
"@shikijs/markdown-it": "^1.22.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/browser": "^2.1.4",
"eslint": "^9",
"stylus": "^0.64.0",
"tsup": "^8.3.5",
"typescript": "^5.6",
"unplugin-vue-markdown": "^0.26.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-qrcode": "^0.2.3",
"vite-plugin-vue-devtools": "^7.6.2",
"vitest": "^2.1.4"
}
}