-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
85 lines (85 loc) · 2.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
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
{
"name": "daisyui",
"version": "4.12.14",
"description": "daisyUI - Tailwind CSS Components",
"author": "Pouya Saadeghi",
"license": "MIT",
"homepage": "https://daisyui.com",
"repository": {
"type": "git",
"url": "git+https://github.com/saadeghi/daisyui.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/daisyui"
},
"bugs": {
"url": "https://github.com/saadeghi/daisyui/issues"
},
"keywords": [
"design-system",
"tailwindcss",
"components",
"ui-library",
"component",
"framework",
"tailwind",
"daisyui",
"theming",
"postcss",
"design",
"css",
"ui"
],
"main": "src/index.js",
"typings": "src/index.d.ts",
"types": "src/index.d.ts",
"files": [
"src/lib/**/*.js",
"dist/*.js",
"dist/{themes,styled,unstyled,full}.css",
"src/index.js",
"src/theming/*.js",
"src/theming/*.d.ts",
"src/index.d.ts"
],
"engines": {
"node": ">=16.9.0"
},
"browserslist": [
"> 7%"
],
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"scripts": {
"init": "npm install && npm run build && cd src/docs && npm install && npm run get-json --silent && cd src/experiments/playground && npm install",
"format": "biome format --write .",
"lint": "biome lint . --write",
"build": "node src/build",
"build:skipfullcss": "node src/build --skipfullcss",
"dev": "cd src/docs && npm run dev",
"playground": "cd src/experiments/playground && npm run dev",
"release": "node src/release",
"publish:alpha": "npm publish --tag=alpha",
"alpha": "npm run release -- --alpha && npm publish --tag=alpha"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"autoprefixer": "10.4.19",
"commit-and-tag-version": "12.4.1",
"postcss-cli": "11.0.0",
"postcss-import": "16.1.0",
"prejss-cli": "0.3.3",
"tailwindcss": "3.4.4"
},
"dependencies": {
"css-selector-tokenizer": "^0.8",
"culori": "^3",
"picocolors": "^1",
"postcss-js": "^4"
}
}