-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "tailwind-plugin-realtime-colors",
"main": "dist/plugin.cjs",
"module": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"version": "1.2.0",
"description": "A Tailwind CSS plugin that allows you to load colors from URL of Realtime Colors",
"type": "module",
"scripts": {
"dev": "tsup src/plugin.ts --watch --dts",
"build": "tsup src/plugin.ts --no-splitting --dts --treeshake --format cjs,esm",
"check": "biome check .",
"fix": "biome check . --apply",
"format": "biome format . --write"
},
"exports": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js",
"require": "./dist/plugin.cjs"
},
"dependencies": {
"color-convert": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/color-convert": "^2.0.3",
"@types/node": "^20.11.17",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"tailwindcss": "^3.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors"
},
"bugs": {
"url": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors/issues"
},
"homepage": "https://github.com/BlankParticle/tailwind-plugin-realtime-colors",
"keywords": [
"tailwindcss",
"tailwind",
"tailwind-plugin",
"realtime-colors"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/BlankParticle"
}
],
"author": {
"name": "BlankParticle",
"email": "[email protected]",
"url": "https://blankparticle.in"
},
"license": "MIT"
}