-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.3 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
{
"name": "rslib-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --filter \"./packages/*\" run build",
"build:examples": "pnpm --filter \"@examples/*\" run build",
"check": "rs check --type-check",
"check-spell": "pnpx cspell",
"format": "rs fmt",
"lint": "rs lint --type-check",
"prepare": "rs hooks",
"test": "pnpm run test:unit && pnpm run test:integration && pnpm run test:e2e",
"test:e2e": "pnpm run build:examples && cd tests && pnpm run test:e2e",
"test:integration": "rstest --project integration",
"test:integration:exe": "rstest --project integration-exe",
"test:unit": "rstest --project unit*",
"testu": "pnpm run test:unit -u && pnpm run test:integration -u",
"update:rsbuild": "npx taze minor --include /rsbuild/ -w -r -l",
"watch": "pnpm build --watch"
},
"devDependencies": {
"@rstest/adapter-rslib": "catalog:",
"@rstest/core": "catalog:",
"@types/fs-extra": "catalog:",
"@types/node": "catalog:",
"cspell-ban-words": "catalog:",
"fs-extra": "catalog:",
"heading-case": "catalog:",
"prettier": "catalog:",
"rstack": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@12.5.1",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"pnpm": ">=12.5.1"
}
}