-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
68
69
70
71
72
73
74
75
{
"name": "node-version",
"version": "4.3.0",
"description": "Get Node current version",
"keywords": [
"node",
"version",
"runtime",
"environment",
"semver"
],
"author": {
"name": "Rodolphe Stoclin",
"email": "rodolphe@2clics.net",
"url": "http://2clics.net"
},
"homepage": "https://github.com/srod/node-version",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false,
"packageManager": "bun@1.3.5",
"directories": {
"lib": "dist"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/srod/node-version.git"
},
"bugs": {
"url": "https://github.com/srod/node-version/issues"
},
"scripts": {
"build": "tsdown",
"check-exports": "attw --pack . --profile esm-only",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"format:check": "biome check .",
"lint": "biome lint .",
"format": "biome format . --write",
"changeset": "changeset",
"changeset:version": "changeset version && bun install --no-frozen-lockfile",
"changeset:release": "bun run build && changeset publish --provenance",
"pretest": "bun run lint",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "^2.3.11",
"@changesets/cli": "2.31.0",
"@total-typescript/tsconfig": "1.0.4",
"@types/node": "24.10.4",
"@vitest/coverage-v8": "4.1.7",
"tsdown": "0.21.4",
"typescript": "5.9.3",
"vitest": "4.1.7"
}
}