-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "@pmndrs/labs",
"description": "🏆 JS benchmarks you can trust",
"type": "module",
"version": "0.6.0",
"license": "ISC",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"bench": "./dist/cli.mjs",
"labs": "./dist/cli.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"bench": "tsx src/cli.ts",
"build": "unbuild --config .config/build.config.ts",
"release": "pnpm run build && pnpm publish --access public",
"test": "vitest",
"lint": "oxlint -c .config/oxlint.json",
"format": "prettier --config .config/prettier.json --write .",
"typecheck": "tsc --build --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"oxlint": "^1.56.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"pnpm": ">=10.0.0",
"node": ">=25.0.0"
}
}