@rebuildjs/tailwindcss 0.10.2 → 0.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +69 -70
package/package.json CHANGED
@@ -1,71 +1,70 @@
1
1
  {
2
- "name": "@rebuildjs/tailwindcss",
3
- "version": "0.10.2",
4
- "description": "Tailwindcss integration with rebuildjs",
5
- "keywords": [
6
- "tailwindcss",
7
- "reactive",
8
- "multi page apps",
9
- "web app",
10
- "web server",
11
- "esbuild",
12
- "rmemo",
13
- "ctx-core"
14
- ],
15
- "homepage": "https://github.com/rebuildjs/tailwindcss#readme",
16
- "bugs": {
17
- "url": "https://github.com/rebuildjs/tailwindcss/issues"
18
- },
19
- "repository": {
20
- "type": "git",
21
- "url": "https://github.com/rebuildjs/tailwindcss.git"
22
- },
23
- "license": "Apache-2.0",
24
- "author": {
25
- "name": "Brian Takita",
26
- "url": "https://briantakita.me",
27
- "email": "info+rebuildjs-tailwindcss@briantakita.me"
28
- },
29
- "type": "module",
30
- "files": [
31
- "*.d.ts",
32
- "*.js",
33
- "*.json",
34
- "rebuild_tailwind_plugin"
35
- ],
36
- "types": "./index.d.ts",
37
- "exports": {
38
- ".": "./index.js",
39
- "./package.json": "./package.json"
40
- },
41
- "scripts": {
42
- "build": ":",
43
- "clean": ":",
44
- "exec": "$@",
45
- "prepublishOnly": "pnpm clean && pnpm build && pnpm test",
46
- "test": "pnpm run /^test:/",
47
- "test:types": "check-dts",
48
- "test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
49
- "disable:test:unit:coverage": "c8 pnpm test:unit"
50
- },
51
- "dependencies": {
52
- "ctx-core": "^7.1.5",
53
- "esbuild": "^0.20.2",
54
- "postcss": "latest",
55
- "rebuildjs": "^0.69.7",
56
- "tailwindcss": "^3.4.3"
57
- },
58
- "devDependencies": {
59
- "c8": "^9.1.0",
60
- "check-dts": "^0.7.2",
61
- "esmock": "^2.6.4",
62
- "relementjs": "^0.79.5",
63
- "tsx": "^4.7.2",
64
- "typescript": "next",
65
- "uvu": "^0.5.6"
66
- },
67
- "publishConfig": {
68
- "access": "public"
69
- },
70
- "sideEffects": false
71
- }
2
+ "name": "@rebuildjs/tailwindcss",
3
+ "version": "0.10.4",
4
+ "description": "Tailwindcss integration with rebuildjs",
5
+ "keywords": [
6
+ "tailwindcss",
7
+ "reactive",
8
+ "multi page apps",
9
+ "web app",
10
+ "web server",
11
+ "esbuild",
12
+ "rmemo",
13
+ "ctx-core"
14
+ ],
15
+ "homepage": "https://github.com/rebuildjs/tailwindcss#readme",
16
+ "bugs": {
17
+ "url": "https://github.com/rebuildjs/tailwindcss/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/rebuildjs/tailwindcss.git"
22
+ },
23
+ "license": "Apache-2.0",
24
+ "author": {
25
+ "name": "Brian Takita",
26
+ "url": "https://briantakita.me",
27
+ "email": "info+rebuildjs-tailwindcss@briantakita.me"
28
+ },
29
+ "type": "module",
30
+ "files": [
31
+ "*.d.ts",
32
+ "*.js",
33
+ "*.json",
34
+ "rebuild_tailwind_plugin"
35
+ ],
36
+ "types": "./index.d.ts",
37
+ "exports": {
38
+ ".": "./index.js",
39
+ "./package.json": "./package.json"
40
+ },
41
+ "dependencies": {
42
+ "ctx-core": "^7.2.0",
43
+ "esbuild": "^0.20.2",
44
+ "postcss": "latest",
45
+ "rebuildjs": "^0.70.0",
46
+ "tailwindcss": "^3.4.3"
47
+ },
48
+ "devDependencies": {
49
+ "c8": "^9.1.0",
50
+ "check-dts": "^0.7.2",
51
+ "esmock": "^2.6.4",
52
+ "relementjs": "^0.80.0",
53
+ "tsx": "^4.7.2",
54
+ "typescript": "next",
55
+ "uvu": "^0.5.6"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "sideEffects": false,
61
+ "scripts": {
62
+ "build": ":",
63
+ "clean": ":",
64
+ "exec": "$@",
65
+ "test": "pnpm run /^test:/",
66
+ "test:types": "check-dts",
67
+ "test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
68
+ "disable:test:unit:coverage": "c8 pnpm test:unit"
69
+ }
70
+ }