-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "@stylexswc/constants",
"description": "Constants, regex patterns and static data for StyleX SWC plugin",
"version": "0.15.5",
"private": true,
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "del-cli dist",
"do:nothing": "exit 0",
"format": "run-p format:prettier format:rs format:toml",
"format:check": "run-p format:rs:check format:toml:check",
"format:prettier": "prettier . -w",
"format:rs": "cargo fmt --all",
"format:rs:check": "cargo fmt -- --check",
"format:toml": "taplo format",
"format:toml:check": "taplo format --check",
"lint": "eslint . --color",
"lint:check": " cargo clippy --all-targets --all-features -- -D warnings",
"precommit": "lint-staged",
"prepublishOnly": "pnpm run build",
"prepush": "lint-prepush",
"test": "scripty",
"test:coverage": "scripty",
"test:flamegraph": "scripty",
"test:profile": "NODE_ENV=test cargo flamegraph --root --test"
},
"config": {
"scripty": {
"path": "../../scripts/packages"
}
},
"devDependencies": {
"@taplo/cli": "^0.7.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1"
},
"keywords": [
"stylex",
"swc",
"swc-plugin"
]
}