-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "@stylexswc/rollup-plugin",
"description": "StyleX rollup plugin with NAPI-RS compiler",
"version": "0.15.5-rc.1",
"private": false,
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "scripty --ts --flatten",
"check:artifacts": "scripty",
"clean": "del-cli dist",
"lint": "eslint . --color",
"lint:check": "eslint . --color --format json --output-file dist/eslint_report.json",
"postbuild": "pnpm run check:artifacts",
"precommit": "lint-staged",
"prepublishOnly": "pnpm run build",
"prepush": "lint-prepush",
"test": "jest",
"typecheck": "scripty --ts"
},
"config": {
"scripty": {
"path": "../../scripts/packages"
}
},
"dependencies": {
"@stylexjs/babel-plugin": "^0.18.2",
"@stylexswc/rs-compiler": "0.15.5-rc.1",
"lightningcss": "^1.31.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-html": "^2.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-swc": "^0.4.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"browserslist": "^4.28.1",
"jest": "^30.3.0",
"jest-chain-transform": "^0.0.8",
"rollup": "^4.60.1"
},
"keywords": [
"rollup-plugin",
"rolup",
"stylex",
"swc"
],
"main": "dist/index.js",
"repository": "https://github.com/Dwlad90/stylex-swc-plugin"
}