-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.87 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
57
58
59
60
{
"name": "cpupro",
"version": "0.5.1",
"description": "Rethinking of CPU profile (collected in Node.js or Chromium browsers) analysis",
"author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
"license": "MIT",
"keywords": [
"v8",
"cpu",
"profile",
"cpuprofile",
"ui",
"viewer",
"report",
"analysis",
"discovery"
],
"bin": "./bin/cpupro",
"files": [
"bin",
"build/app.html",
"build/report.html",
"lib"
],
"exports": {
".": "./lib/index.js",
"./file": "./lib/require-file-report.js",
"./file/report": "./lib/require-file-report.js",
"./file/data": "./lib/require-file-data.js",
"./build/*.html": "./build/*.html",
"./package.json": "./package.json"
},
"scripts": {
"start": "discovery",
"lint": "eslint lib app",
"typecheck": "tsc --noEmit",
"build": "npm run build-wasm && npm run build-app && npm run build-report-template",
"build-wasm": "node scripts/wat-compile.js",
"build-app": "discovery-build --clean --config .discoveryrc.app.js --single-file --no-data --entry-names \"app\"",
"build-report-template": "discovery-build --single-file --no-data --no-model-data-upload --entry-names \"report\"",
"build-gh-pages": "npm run build-wasm && discovery-build --config .discoveryrc.ghpages.js --single-file --no-data -o .gh-pages && node scripts/gh-pages-files",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@discoveryjs/json-ext": "^0.6.3",
"clap": "^3.1.1",
"open": "^8.4.0",
"v8-profiler-next": "~1.5.1"
},
"devDependencies": {
"@discoveryjs/cli": "^2.11.1",
"@discoveryjs/discovery": "1.0.0-beta.89",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.7.0",
"typescript": "^5.6.3",
"wabt": "^1.0.32"
}
}