-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.75 KB
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
{
"name": "lsbench",
"version": "0.1.0",
"description": "Benchmark arbitrary language servers with scripted LSP actions",
"license": "MIT",
"author": "montymxb",
"keywords": [
"lsp",
"language-server",
"benchmark",
"performance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TypeFox/lsbench.git"
},
"homepage": "https://github.com/TypeFox/lsbench#readme",
"bugs": "https://github.com/TypeFox/lsbench/issues",
"bin": {
"lsbench": "dist/cli.js"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"!dist/**/*.map"
],
"scripts": {
"gen:version": "node scripts/gen-version.mjs",
"build": "node scripts/gen-version.mjs && tsc",
"build:prod": "node scripts/gen-version.mjs && tsc --sourceMap false --declarationMap false",
"clean": "rm -rf ./dist",
"dev": "node scripts/gen-version.mjs && tsc --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:integration": "npm run build && vitest run --config vitest.integration.config.ts",
"lint": "oxlint .",
"format": "biome format .",
"format:fix": "biome format --write .",
"knip": "knip",
"prepublishOnly": "npm run clean && npm run build:prod"
},
"dependencies": {
"commander": "^14.0.3",
"vscode-jsonrpc": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@types/node": "^24.13.3",
"knip": "^6.32.1",
"oxlint": "^1.78.0",
"typescript": "^5.5.0",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=24.0.0"
}
}