-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "tailwind-dark-aware",
"version": "0.3.1",
"description": "Tailwind CSS plugin to generate shorthands for light mode and dark mode colour classes.",
"author": "Vu Van Dung",
"license": "MIT",
"repository": "https://github.com/joulev/tailwind-dark-aware",
"keywords": [
"tailwindcss",
"dark mode"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"prettier": {
"singleQuote": false,
"trailingComma": "all",
"printWidth": 100
},
"scripts": {
"main:build": "tsc -p tsconfig.build.json",
"main:watch": "tsc -w -p tsconfig.build.json",
"demo:dev": "next dev ./demo",
"demo:build": "next build ./demo",
"demo:start": "next start ./demo",
"build": "pnpm main:build && pnpm demo:build",
"dev": "concurrently \"pnpm main:watch\" \"pnpm demo:dev\"",
"test": "jest",
"test:ci": "jest --ci --coverage"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || insiders"
},
"devDependencies": {
"@types/color": "3.0.6",
"@types/jest": "29.5.12",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"concurrently": "8.2.2",
"jest": "29.7.0",
"next": "14.2.3",
"postcss": "8.4.38",
"prettier": "3.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "latest",
"ts-jest": "29.1.4",
"typescript": "5.4.5"
},
"dependencies": {
"color": "4.2.3"
}
}