-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "spiceflow-root",
"private": true,
"type": "module",
"scripts": {
"test": "pnpm run -r test",
"watch": "pnpm -r watch",
"build": "pnpm -r build",
"release": "pnpm build && changeset",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/bun": "~1.2.13",
"@types/node": "~24.0.1",
"c8": "^10.1.3",
"lintcn": "0.7.0",
"prettier": "^3.4.2",
"spiceflow": "workspace:^",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^8.0.13",
"vitest": "^4.1.4"
},
"pnpm": {
"overrides": {
"spiceflow": "workspace:^",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3"
}
},
"repository": "https://github.com/remorses/",
"author": "remorses <beats.by.morse@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=22"
},
"workspaces": [
"./*",
"./experiments/*",
"./example-federation/*"
]
}