-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
97 lines (97 loc) · 2.57 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
{
"name": "franken-ui",
"author": "Sveltecult <leader@sveltecult.com>",
"description": "Franken UI is an HTML-first, open-source library of UI components based on the utility-first Tailwind CSS with UIkit 3 compatibility. The design is based on shadcn/ui ported to be framework-agnostic.",
"keywords": [
"uikit",
"tailwind",
"design-system",
"shadcn-ui",
"component",
"framework",
"tailwindcss",
"shadcn",
"css",
"ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/franken-ui/ui.git"
},
"bugs": {
"url": "https://github.com/franken-ui/ui/issues"
},
"homepage": "https://www.franken-ui.dev",
"license": "MIT",
"version": "2.0.0-internal.23",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package",
"prepublishOnly": "./package.sh",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./shadcn-ui/*": {
"types": "./dist/shadcn-ui/*.d.ts",
"default": "./dist/shadcn-ui/*.js"
},
"./js/*": {
"default": "./dist/js/*.js"
},
"./postcss/*": {
"types": "./dist/postcss/*.d.cts",
"default": "./dist/postcss/*.cjs"
}
},
"bin": "./dist/bin.js",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"lodash": "^4.17.21",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-sort-media-queries": "^5.2.0",
"tailwindcss": "^3.4.9"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.0",
"@types/lodash": "^4.17.0",
"@types/node": "^20.14.9",
"autoprefixer": "^10.4.18",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.0.0",
"lodash": "^4.17.21",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"publint": "^0.2.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.9",
"tslib": "^2.4.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.4"
},
"types": "./dist/index.d.ts",
"type": "module"
}