-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
56 lines (56 loc) · 1.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@memlab/monorepo",
"private": true,
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"ansi": "^0.3.1",
"babar": "^0.2.0",
"blessed": "^0.1.81",
"chalk": "^4.0.0",
"fs-extra": "^4.0.2",
"minimist": "^1.2.0",
"puppeteer": "^22.12.1",
"string-width": "^4.2.0",
"util.promisify": "^1.1.1",
"xvfb": "^0.4.0"
},
"devDependencies": {
"@types/blessed": "^0.1.19",
"@types/fs-extra": "^9.0.3",
"@types/jest": "^27.4.1",
"@types/minimist": "^1.2.2",
"@types/node": "^12.16.3",
"jest": "^29.6.2",
"typescript": "^4.6.3"
},
"scripts": {
"dev": "tsc -b -w",
"build": "npm run clean && npm run build-pkg --workspaces",
"pub": "npm run publish-patch --workspaces",
"clean": "npm run clean-pkg --workspaces && rm -rf ./website/build",
"memlab": "node packages/cli/dist/runner.js",
"test": "npm run test-pkg --workspaces --if-present",
"build-pkg": "npm run error",
"clean-pkg": "npm run error",
"test-pkg": "npm run error",
"publish-patch": "npm run error",
"error": "echo 'upgrade node.js to version 16.0.0 or above. Consider using nvm.'; exit 1"
},
"devEngines": {
"node": "18.x || 19.x || 20.x",
"npm": "7.x || 8.x || 9.x || 10.x"
},
"engines": {
"node": "18.x || 19.x || 20.x",
"npm": "7.x || 8.x || 9.x || 10.x"
},
"workspaces": [
"./packages/core",
"./packages/e2e",
"./packages/heap-analysis",
"./packages/api",
"./packages/cli",
"./packages/memlab"
]
}