-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 903 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 903 Bytes
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
{
"name": "@immutable/devtools-monorepo",
"description": "Immutable.js DevTools",
"type": "module",
"version": "2.1.7",
"scripts": {
"dev": "yarn workspace @immutable/devtools-extension run dev",
"build": "yarn workspaces foreach --all -pt run build",
"lint": "yarn workspaces foreach --all -pt run lint",
"test": "yarn workspaces foreach --all -pt run test",
"version": "node build/update-version.js && git add packages/extension/extension/manifest.json && git add packages/*/package.json && yarn"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@immutable/devtools": "workspace:^"
},
"packageManager": "yarn@4.9.1",
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"rollup": "^4.41.0",
"ts-node": "^10.9.2"
}
}