-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.14 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
{
"name": "my-react-devtools",
"version": "0.1.0",
"private": true,
"scripts": {
"build:packages": "ts-node ./scripts/build.ts",
"build:local": "cd chrome && pnpm run build:local",
"build": "pnpm run build:packages && pnpm run build:local",
"dev:web": "cd chrome && pnpm run dev:web",
"dev:local": "cd chrome && pnpm run dev:local",
"dev:extension": "cd chrome && pnpm run dev:extension",
"build:extension": "cd chrome && pnpm run build:extension",
"lint": "eslint --cache --ext ts,tsx .",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --ignore-path .prettierignore --write .",
"clean": "pnpm -p -r -c exec rm -rf dist dev .cache",
"purge": "pnpm -p -r -c exec rm -rf node_modules"
},
"packageManager": "[email protected]",
"devDependencies": {
"@my-react/react": "^0.3.4",
"@my-react/react-dom": "^0.3.4",
"@my-react/react-reconciler": "^0.3.4",
"@types/node": "^22.8.4",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"project-tool": "https://github.com/MrWangJustToDo/project-tool.git",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.3.3"
}
}