-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
{
"name": "plugwind.js",
"version": "0.6.0",
"license": "MIT",
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.18",
"pnpm": ">=9.12",
"npm": "prefer using pnpm",
"yarn": "prefer using pnpm"
},
"module": "./js/index.mjs",
"main": "./js/index.cjs",
"types": "./ts/",
"exports": {
".": {
"types": "./ts/index.d.ts",
"import": "./js/index.mjs",
"require": "./js/index.cjs"
},
"./package.json": "./package.json"
},
"bugs": "https://github.com/siguici/plugwind/issues",
"homepage": "https://github.com/siguici/plugwind",
"author": {
"name": "Sigui Kessé Emmanuel",
"email": "[email protected]",
"url": "https://github.com/siguici"
},
"description": "🧩 PlugWind Make it easy to create TailwindCSS plugins.",
"keywords": [
"plugwind",
"componants",
"css",
"dark-mode",
"light-mode",
"plugin",
"tailwindcss",
"typescript",
"utilities"
],
"sideEffects": false,
"private": false,
"scripts": {
"build": "pnpm build.node && pnpm build.deno",
"build.node": "pnpm clear.node && tsc --build && tsm scripts/build.ts",
"build.deno": "pnpm clear.deno && pnpm denoify",
"check": "biome ci . && knip",
"check.format": "biome format .",
"check.lint": "biome check .",
"clear": "pnpm clear.node && pnpm clear.deno",
"clear.node": "rimraf js && rimraf ts",
"clear.deno": "rimraf jsr/*",
"denoify": "denoify --out jsr",
"debug": "pnpm check && pnpm test",
"fix": "pnpm unsed && pnpm lint && pnpm format",
"format": "biome format --write .",
"knip": "knip",
"lint": "biome check --write .",
"unsed": "knip --fix"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.7.7",
"denoify": "^1.6.16",
"esbuild": "^0.24.0",
"globby": "^14.0.2",
"knip": "^5.33.3",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"tslib": "^2.8.0",
"tsm": "^2.3.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"tailwindcss": "^3.4.7"
}
}