-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 KB
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
{
"name": "@eox/ui",
"version": "1.1.0",
"description": "EOX UI styles & tools",
"main": "./dist/eox-ui.umd.cjs",
"module": "./dist/eox-ui.js",
"exports": {
".": {
"import": "./dist/eox-ui.js",
"require": "./dist/eox-ui.umd.cjs"
},
"./beercss/*": {
"import": "./lib/beercss/*",
"require": "./lib/beercss/*"
},
"./vuetify/*": {
"import": "./lib/vuetify/*",
"require": "./lib/vuetify/*"
},
"./style/*": {
"import": "./style/*",
"require": "./style/*"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"lib",
"style"
],
"type": "module",
"scripts": {
"build": "node ./add-no-inline.js node_modules/beercss/dist/cdn/beer.min.css && vite build",
"format": "npx prettier --write .",
"release": "release-it",
"start": "vite --open playground.html",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOX-A/EOxUI.git"
},
"author": "EOX",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOX-A/EOxUI/issues"
},
"homepage": "https://github.com/EOX-A/EOxUI#readme",
"devDependencies": {
"@eox/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^10.0.5",
"@vitest/ui": "^4.0.18",
"jsdom": "^28.1.0",
"release-it": "^19.2.4",
"vite": "^6.1.0",
"vitest": "^4.0.18"
},
"dependencies": {
"beercss": "4.0.16"
}
}