-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.46 KB
/
package.json
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
{
"name": "swr-devtools",
"version": "0.0.1",
"private": true,
"workspaces": ["packages/*", "examples/*"],
"scripts": {
"build": "run-s build:devtools build:panel build:extensions",
"build:devtools": "pnpm --filter \"swr-devtools\" build",
"build:demo": "pnpm --filter \"swr-devtools-demo\" build",
"build:extensions": "pnpm --filter \"swr-devtools-extensions\" build",
"build:panel": "pnpm --filter \"swr-devtools-panel\" build",
"deploy:demo": "run-s build:devtools build:panel build:demo",
"format": "pnpm -r format",
"prerelease": "run-s build lint",
"release": "lerna publish --conventional-commits",
"start:demo": "pnpm --filter swr-devtools-demo dev",
"start:dev": "pnpm --filter swr-devtools start",
"start:panel": "pnpm --filter swr-devtools-panel start",
"start": "run-p -l start:*",
"v1": "pnpm --filter swr-v1-devtools-demo dev",
"v1-legacy": "pnpm --filter swr-v1-legacy-devtools-demo dev",
"fix:biome": "pnpm -r fix:biome",
"lint": "pnpm -r lint",
"test": "run-p -l test:*",
"test:panel": "pnpm --filter swr-devtools-panel test",
"test:devtools": "pnpm --filter swr-devtools test"
},
"repository": "ssh://[email protected]/koba04/swr-devtools.git",
"author": "Toru Kobayashi <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.3.3",
"lerna": "^5.5.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}