-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "generate-tailwindcss-safelist",
"private": false,
"version": "1.0.3",
"description": "Generate a Tailwind CSS safelist by scanning project files",
"author": "Alireza Bahrani",
"license": "MIT",
"type": "module",
"types": "dist/cli.d.ts",
"files": [
"dist"
],
"bin": {
"generate-tailwindcss-safelist": "dist/cli.js"
},
"keywords": [
"tailwindcss",
"safelist",
"generate",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AliReza99/generate-tailwindcss-safelist.git"
},
"scripts": {
"lint:prettier": "prettier --check --cache ./src/**/*.{js,jsx,ts,tsx}",
"prettify": "prettier --write --cache ./src/**/*.{js,jsx,ts,tsx}",
"lint": "tsc --noEmit && eslint --cache --cache-location ./node_modules/.cache/eslint/ --quiet --ext .js,.jsx,.ts,.tsx,.mjs src",
"prebuild": "rimraf dist",
"build": "tsc",
"do-link": "npm link",
"release": "npx release patch"
},
"dependencies": {
"@arbz/execute": "^1.0.3",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"tailwindcss-candidates": "^3.4.16"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.7.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
}
}