-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "stencil-tailwind-plugin",
"version": "1.8.0",
"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": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"lint": "eslint --fix ./src",
"test": "jest --ci --runInBand",
"test:watch": "jest --runInBand --no-cache --watch",
"test:update": "jest --runInBand --no-cache --updateSnapshot",
"prepublishOnly": "npm run 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": ">=3.0.7",
"typescript": ">=4.4.2"
},
"dependencies": {
"autoprefixer": "^10.4.7",
"chalk": "^4.1.2",
"cssnano": "^5.1.12",
"fs-extra": "^10.0.0",
"p-queue": "^6.6.2",
"postcss": "^8.4.14",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-discard-comments": "^5.1.2",
"postcss-load-config": "^4.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@stencil/core": "^2.17.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/postcss-import": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^7.32.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"jest": "^28.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}