-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.79 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.79 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
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
{
"name": "@deutschemodelunitednations/corporate-identity",
"version": "1.0.0",
"description": "DMUN Corporate Identity containing tailwind and daisyUI configurations",
"keywords": [
"corporate-identity",
"dmun",
"tailwindcss",
"daisyui",
"css",
"colors",
"themes"
],
"homepage": "https://github.com/DeutscheModelUnitedNations/dmun-corporate-identity#readme",
"bugs": {
"url": "https://github.com/DeutscheModelUnitedNations/dmun-corporate-identity/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeutscheModelUnitedNations/dmun-corporate-identity.git"
},
"license": "CC BY-NC 4.0",
"author": "Deutsche Model United Nations e.V. / Tade Strehk",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"./colors": "./src-pkg/colors.yml",
"./css/fonts": "./dist/dmun-fonts.css",
"./css/shades/dmun": "./dist/dmun-tailwind-shades.css",
"./css/shades/munsh": "./dist/munsh-tailwind-shades.css",
"./css/shades/munbw": "./dist/munbw-tailwind-shades.css",
"./css/theme/dmun-light": "./dist/dmun-daisyUI-dmun-light.css",
"./css/theme/dmun-dark": "./dist/dmun-daisyUI-dmun-dark.css"
},
"files": [
"lib/",
"dist/*.css",
"colors.yml",
"README.md"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "npm run generate:css && npm run update:exports && npm run build:lib",
"build:lib": "vite build --mode lib",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"generate:css": "npm run generate:shades && npm run generate:daisyui && npm run generate:fonts",
"generate:shades": "tsx scripts/generate-shades-css.ts",
"generate:daisyui": "tsx scripts/generate-daisyUI-css.ts",
"generate:fonts": "tsx scripts/generate-fonts-css.ts",
"update:exports": "tsx scripts/update-package-exports.ts",
"generate:schema": "tsx src-pkg/schema.ts > src-pkg/schema.json"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.43.2",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@tailwindcss/vite": "^4.1.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.18.6",
"daisyui": "^5.1.14",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"rollup": "^4.52.2",
"svelte": "^5.39.5",
"svelte-check": "^4.3.2",
"tailwindcss": "^4.1.13",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^6.3.6",
"vite-plugin-devtools-json": "^0.2.1",
"vite-plugin-dts": "^4.5.4",
"zod": "^4.1.11"
},
"dependencies": {
"@fontsource/outfit": "^5.2.8",
"@fontsource/roboto-mono": "^5.2.8",
"@fontsource/vollkorn": "^5.2.10",
"esbuild": "^0.25.10",
"js-yaml": "^4.1.0",
"tailwind-shades": "^1.1.2"
}
}