-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 725 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 725 Bytes
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
{
"name": "@raulfdm/node-versions",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"type": "module",
"bin": {
"node-versions": "./bin/node-versions"
},
"files": ["dist", "bin"],
"scripts": {
"dev": "bun run src/index.ts",
"build:standalone-test": "bun build src/index.ts --compile --outfile dist/node-versions --target bun --minify",
"build": "bun build src/index.ts --outfile dist/node-versions.mjs --target node --minify"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@changesets/cli": "2.27.1",
"@types/bun": "1.0.4",
"consola": "3.2.3",
"execa": "8.0.1",
"just-group-by": "2.2.0",
"meow": "13.1.0",
"typescript": "5.3.3",
"zod": "3.22.4"
}
}