-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
37 lines (37 loc) · 936 Bytes
/
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
{
"name": "perf-chart",
"private": true,
"version": "8.3.2",
"description": "Generate performance charts from cspell performance data.",
"bin": {
"cspell-integration-tests": "bin.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "pnpm run build:tsc && pnpm run build:esbuild",
"build:esbuild": "esbuild --bundle --packages=bundle --platform=node --target=node18 --outfile=lib/app.cjs src/app.ts",
"build:tsc": "tsc -p .",
"clean": "shx rm -rf dist coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"test-vitest": "vitest run",
"watch": "tsc -p . -w"
},
"author": "Jason Dent",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0",
"csv-parse": "^5.6.0",
"thistogram": "^1.1.1"
},
"keywords": [],
"files": [
"lib",
"bin.js"
],
"devDependencies": {
"esbuild": "^0.25.1"
}
}