-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "perf-insight-mono",
"version": "1.2.0",
"description": "Example command line tool.",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.0"
},
"bin": {
"bin": "./bin.mjs"
},
"scripts": {
"ib": "pnpm i && pnpm build",
"ibt": "pnpm ib && pnpm test",
"build": "pnpm -r --stream --workspace-concurrency=2 run build",
"watch": "cd packages/perf-insight && pnpm run watch",
"build:readme": "pnpm build && pnpm build:readme:help && pnpm build:readme:example && pnpm build:readme:inject && prettier -w \"**/README.md\"",
"build:readme:help": "./bin.mjs --help > static/help.txt",
"build:readme:example": "./bin.mjs exampleMap.perf.mjs -t 500 > static/example.txt",
"build:readme:inject": "inject-markdown README.md \"packages/*/README.md\"",
"coverage": "pnpm -r --stream --workspace-concurrency=2 run coverage",
"test": "pnpm -r --stream --workspace-concurrency=2 run test",
"lint": "pnpm eslint:check && pnpm prettier:check",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"lint:spell": "cspell . --no-progress",
"prettier:check": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"app": "perf-insight"
},
"keywords": [
"template",
"hello"
],
"author": {
"name": "Street Side Software",
"url": "https://github.com/streetsidesoftware"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/perf-insight/issues"
},
"homepage": "https://github.com/streetsidesoftware/perf-insight#readme",
"license": "MIT",
"pnpm": {
"overrides": {},
"patchedDependencies": {}
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^2.1.8",
"cspell": "^8.17.2",
"cspell-trie-lib": "^8.17.2",
"eslint": "^9.19.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"inject-markdown": "^3.1.4",
"lorem-ipsum": "^2.0.8",
"perf-insight": "workspace:*",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11",
"vitest": "^2.1.8"
}
}