-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "yak-swc",
"version": "4.1.0",
"description": "next-yak rust based swc plugin to compile styled components at build time",
"homepage": "https://yak.js.org/",
"repository": {
"type": "git",
"url": "https://github.com/jantimon/next-yak.git"
},
"bugs": {
"url": "https://github.com/jantimon/next-yak/issues"
},
"license": "MIT",
"keywords": [
"swc-plugin",
"css-in-js",
"styled-components",
"react",
"typescript"
],
"main": "target/wasm32-wasip1/release/yak_swc.wasm",
"scripts": {
"build": "cargo build --release --target=wasm32-wasip1",
"prepublishOnly": "node ../../scripts/check-pnpm.js && npm run build",
"prettier": "cargo fmt --all",
"test": "cargo test",
"test:snapshots": "cd yak_swc && UPDATE=1 cargo test"
},
"files": [],
"preferUnplugged": true,
"dependencies": {
"@swc/counter": "catalog:core"
},
"publishConfig": {
"access": "public"
},
"maintainers": [
{
"name": "Luca Schneider"
}
],
"author": {
"name": "Jan Nicklas"
}
}