-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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
{
"name": "tailwindcss-iso",
"title": "Tailwind CSS - Isomorphic",
"description": "A plugin for generating tailwind css and extracting classes uniformly on the server and client.",
"author": "Jack Lukic",
"license": "ISC",
"version": "1.0.6",
"sideEffects": false,
"type": "module",
"cdn": "./dist/browser.js",
"unpkg": "./dist/browser.js",
"jsdelivr": "./dist/browser.js",
"main": "src/server/index.js",
"module": "src/browser/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"cdn": "./dist/browser.js",
"unpkg": "./dist/browser.js",
"jsdelivr": "./dist/browser.js",
"importmap": "./dist/browser.js",
"browser": "./src/browser/index.js",
"node": "./src/server/index.js",
"default": "./src/server/index.js"
},
"./browser": {
"types": "./types/index.d.ts",
"default": "./src/browser/index.js"
},
"./server": {
"types": "./types/index.d.ts",
"default": "./src/server/index.js"
}
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "vitest --config test/configs/vitest.all.config.js",
"test:server": "vitest --config test/configs/vitest.config.js",
"test:browser": "vitest --config test/configs/vitest.browser.config.js"
},
"files": [
"src",
"dist",
"types",
"LICENSE"
],
"peerDependencies": {
"tailwindcss": "^3.0.0 || ^4.0.0"
},
"optionalDependencies": {
"@tailwindcss/node": "^4.1.12",
"@tailwindcss/oxide": "^4.1.12"
},
"devDependencies": {
"@vitest/browser": "^3.2.4",
"playwright": "^1.54.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}