-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tailwindcss-extend",
"version": "0.0.5",
"description": "Compile your tailwindcss components into tailwind plugins and enjoy full autocompletion!",
"author": "David Plugge",
"repository": {
"type": "git",
"url": "https://github.com/david-plugge/tailwindcss-extend"
},
"license": "MIT",
"keywords": [
"tailwindcss",
"postcss",
"vite"
],
"files": [
"dist"
],
"type": "module",
"exports": {
"./vite": {
"default": "./dist/vite.js",
"types": "./dist/vite.d.ts"
}
},
"typesVersions": {
">4.0": {
"vite": [
"./dist/vite.d.ts"
]
}
},
"bin": {
"tailwindcss-extend": "./dist/cli.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "tsc --skipLibCheck",
"format": "prettier --write .",
"ci:version": "changeset version",
"ci:release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^18.0.0",
"@types/postcss-js": "^4.0.1",
"postcss": "^8.4.21",
"prettier": "^3.0.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.4.21",
"tailwindcss": "^3.0.0",
"vite": "^4.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"dependencies": {
"chokidar": "^3.5.3",
"glob": "^10.3.1",
"minimatch": "^9.0.2",
"postcss-js": "^4.0.1",
"sade": "^1.8.1"
}
}