-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 964 Bytes
/
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
{
"name": "stailwc",
"version": "0.17.0",
"description": "An experimental transpiler to bring tailwind macros to SWC rocket",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"swc-plugin",
"swc",
"tailwind",
"tailwindcss",
"next",
"nextjs"
],
"main": "target/wasm32-wasi/release/stailwc.wasm",
"types": "index.d.ts",
"exports": {
".": "./target/wasm32-wasi/release/stailwc.wasm",
"./install": "./install.js"
},
"scripts": {
"prepublishOnly": "cargo build-wasi --release"
},
"files": [
"install.js",
"index.d.ts"
],
"dependencies": {
"app-root-path": "^3.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^19.0.5",
"tailwindcss": "^3.2.2"
},
"peerDependencies": {
"@emotion/serialize": "^1.1.1",
"tailwindcss": "^3.1.8"
}
}