-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
106 lines (106 loc) · 2.77 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
105
106
{
"name": "franken-ui",
"author": "Reden <reden@franken-ui.dev>",
"description": "Franken UI is an open-source library of UI components. Under the hood, it uses UIkit 3 and extended with LitElement. The design is based on shadcn/ui.",
"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.1.0-next.3",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package",
"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"
},
"./css/franken-ui.css": "./dist/css/franken-ui.css",
"./postcss/*": {
"types": "./dist/postcss/*.d.cts",
"default": "./dist/postcss/*.cjs"
},
"./plugin-vite": {
"types": "./dist/plugin-vite.d.ts",
"default": "./dist/plugin-vite.js"
}
},
"bin": "./dist/bin.js",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"lodash": "^4.17.21",
"postcss": "^8.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-js": "^4.0.0",
"postcss-sort-media-queries": "^5.2.0",
"tailwindcss": "^3.4.9 || ^4.0.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@types/eslint": "^9.6.0",
"@types/lodash": "^4.17.0",
"@types/node": "^20.14.9",
"@types/postcss-js": "^4.0.4",
"autoprefixer": "^10.4.18",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^15.0.0",
"lodash": "^4.17.21",
"postcss": "^8.5.3",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-js": "^4.0.1",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.3.3",
"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": "^6.2.1"
},
"types": "./dist/index.d.ts",
"type": "module"
}