-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "@catppuccin/daisyui",
"type": "module",
"version": "1.2.1",
"packageManager": "pnpm@9.13.2",
"description": "🌼 Soothing pastel theme for daisyui",
"author": "lime <liumingxun@yeah.net>",
"license": "MIT",
"keywords": [
"catppuccin",
"theme",
"daisyui"
],
"browser": "dist/catppuccin.css",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist/"
],
"scripts": {
"build": "tsup && node ./src/generate.cjs",
"dev:root": "tsup --watch",
"dev:example": "pnpm -F example dev",
"dev": "pnpm run /^dev:.*/",
"lint:fix": "eslint . --fix",
"test": "vitest --typecheck",
"prepublishOnly": "pnpm run build",
"publish": "npm publish"
},
"peerDependencies": {
"daisyui": "^4.10.2"
},
"dependencies": {
"@catppuccin/palette": "^1.7.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@types/node": "^20",
"eslint": "^9.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}