-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.41 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
72
73
74
75
76
{
"name": "stencil-tailwind-plugin",
"version": "2.0.5",
"description": "This package is used to integrate [tailwindcss](https://tailwindcss.com/) and [StencilJS](https://stenciljs.com/). This plugin for Stencil is specifically focused on the integration between tailwindcss in [JIT](https://tailwindcss.com/docs/just-in-time-mode#enabling-jit-mode) mode and the Stencil build.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"lint": "eslint --fix ./src eslint.config.mjs tsup.config.js jest.config.ts",
"test": "jest --ci --runInBand",
"test:watch": "jest --runInBand --no-cache --watch",
"test:update": "jest --runInBand --no-cache --updateSnapshot",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Poimen/stencil-tailwind-plugin.git"
},
"keywords": [
"tailwindcss",
"tailwind",
"stencil",
"stenciljs",
"plugin"
],
"author": "Richard Shephard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Poimen/stencil-tailwind-plugin/issues"
},
"homepage": "https://github.com/Poimen/stencil-tailwind-plugin#readme",
"peerDependencies": {
"@tailwindcss/postcss": ">=4.1.1",
"tailwindcss": ">=4.1.1",
"typescript": ">=5.8.2"
},
"dependencies": {
"chalk": "^4.1.2",
"cssnano": "^7.0.6",
"fs-extra": "^11.3.0",
"p-queue": "^6.6.2",
"postcss": "^8.5.3",
"postcss-combine-duplicated-selectors": "poimen/postcss-combine-duplicated-selectors#duplicated-keyframes-fix",
"postcss-combine-media-query": "^1.0.1",
"postcss-discard-comments": "^7.0.3",
"postcss-load-config": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@jest/types": "^29.6.3",
"@stencil/core": "^4.28.2",
"@stylistic/eslint-plugin": "^4.2.0",
"@swc/core": "^1.11.16",
"@swc/jest": "^0.2.37",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/postcss-import": "^14.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript-eslint": "^8.29.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}