-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.73 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
64
65
66
67
{
"name": "@blastlauncher/monorepo",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Yukai Huang",
"workspaces": [
"packages/*",
"apps/*"
],
"main": "index.js",
"scripts": {
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"watch": "run-p --print-label watch:runtime watch:api watch:utils",
"watch:runtime": "pnpm --filter runtime run watch",
"watch:utils": "pnpm --filter utils run watch",
"watch:api": "pnpm --filter api run watch",
"build": "pnpm --filter @blastlauncher/* run build",
"dev": "pnpm run dev",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint .",
"start:client": "pnpm --filter blast run start",
"test": "pnpm --recursive --workspace-concurrency=1 --if-present run test",
"cli": "pnpm --filter cli run start"
},
"devDependencies": {
"@changesets/cli": "^3.0.1",
"@types/debug": "^4.1.13",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"cross-env": "^10.1.0",
"jest": "^30.4.2",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/out/",
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"verbose": true
},
"engines": {
"node": ">=24.20.0",
"pnpm": ">=11.24.0"
},
"packageManager": "pnpm@11.24.0"
}