-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.62 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": "@stylexswc/postcss-plugin",
"description": "StyleX PostCSS plugin with NAPI-RS compiler",
"version": "0.15.4",
"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.4",
"fast-glob": "^3.3.3",
"glob-parent": "^6.0.2",
"is-glob": "^4.0.3",
"postcss": "^8.5.10"
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@stylexswc/eslint-config": "0.15.4",
"@stylexswc/typescript-config": "0.15.4",
"@types/babel__core": "^7.20.5",
"@types/glob-parent": "^5.1.3",
"@types/is-glob": "^4.0.4",
"@types/jest": "^30.0.0",
"@types/loader-utils": "^3.0.0",
"@types/node": "^25.5.0",
"jest": "^30.3.0",
"jest-chain-transform": "^0.0.8",
"ts-jest": "^29.4.6"
},
"keywords": [
"postcss",
"postcss-plugin",
"stylex",
"swc"
],
"main": "dist/index.js",
"repository": "https://github.com/Dwlad90/stylex-swc-plugin"
}