-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.21 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
{
"name": "@oneezy/ui",
"version": "2.0.0-next.50",
"description": "A UI library for Tailwind CSS v4 and Svelte v5",
"keywords": [
"tailwindcss",
"tailwindcss 4",
"tailwind 4",
"svelte",
"svelte 5",
"ui",
"components",
"atomic design"
],
"license": "MIT",
"homepage": "https://github.com/oneezy/ui",
"repository": {
"type": "git",
"url": "git+https://github.com/oneezy/ui.git"
},
"bugs": "https://github.com/oneezy/ui/issues",
"scripts": {
"dev": "vite dev --port 1111",
"build": "vite build && npm run package",
"preview": "vite preview --port 5000",
"package": "svelte-kit sync && svelte-package && publint && npm run copy-package",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --check .",
"format": "prettier --write .",
"copy-package": "node ./+scripts/copy-package.js",
"remove-tag": "node ./+scripts/remove-tag.js",
"next": "node ./+scripts/version-bump.js && npm run build && npm publish --tag next",
"clean": "git clean -fXd"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"style": "./dist/ui.css"
},
"./vite.config.js": "./dist/config/vite.config.js",
"./vite.config.d.ts": "./dist/config/vite.config.d.ts",
"./svelte.config.js": "./dist/config/svelte.config.js",
"./svelte.config.d.ts": "./dist/config/svelte.config.d.ts",
"./ui.css": "./dist/ui.css",
"./ui": "./dist/ui.css",
"./config": "./dist/config",
"./fonts": "./dist/fonts",
"./utils/*": "./dist/utils/*"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "./dist/ui.css",
"type": "module",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"dependencies": {
"@iconify-json/bi": "^1.1.23",
"@iconify-json/fluent": "^1.1.57",
"@iconify-json/hugeicons": "^1.1.0",
"@iconify-json/material-symbols": "^1.1.82",
"@iconify-json/solar": "^1.1.9",
"daisyui": "^4.12.2",
"mode-watcher": "^0.3.1",
"runed": "^0.10.0",
"unplugin-icons": "^0.19.0"
},
"devDependencies": {
"@iconify-json/ci": "^1.1.13",
"@iconify-json/fa6-solid": "^1.1.21",
"@iconify-json/ic": "^1.1.17",
"@iconify-json/ph": "^1.1.13",
"@iconify-json/streamline": "^1.1.8",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/package": "^2.3.2",
"@sveltejs/vite-plugin-svelte": "next",
"@sveltejs/vite-plugin-svelte-inspector": "^2.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "0.5.13",
"@tailwindcss/vite": "next",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"publint": "^0.1.16",
"svelte": "next",
"svelte-check": "^3.8.1",
"tailwindcss": "next",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"unplugin-icons": "^0.19.0",
"vite": "^5.3.1",
"vite-plugin-lightningcss": "^0.0.5"
},
"peerDependencies": {
"svelte": "^5.0.0-next.136",
"tailwindcss": "^4.0.0-alpha.15"
}
}