-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.03 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@sourceregistry/node-firecracker",
"version": "1.4.0",
"description": "Typed Node.js client for the Firecracker microVM REST API.",
"type": "module",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist",
"examples",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && vite build && npm run build:jsr-package",
"build:jsr-types": "node scripts/build-jsr-types.mjs",
"build:jsr-package": "npm run build:jsr-types && node scripts/build-jsr-package.mjs",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"docs:build": "typedoc src/index.ts --out generated/docs --name \"node-firecracker\" --excludePrivate --excludeProtected",
"examples/simple": "tsx examples/simple.ts",
"publish:unscoped": "node scripts/publish-unscoped.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SourceRegistry/node-firecracker.git"
},
"keywords": [
"firecracker",
"microvm",
"vm",
"virtualization",
"kvm",
"api-client",
"typescript",
"node",
"nodejs"
],
"author": "Alexander Slaa",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SourceRegistry/node-firecracker/issues"
},
"homepage": "https://sourceregistry.github.io/node-firecracker/",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@sourceregistry/semantic-release-jsr": "^1.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.0.16",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vite": "^8.0.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"publishCmd": "npm run publish:unscoped"
}
],
[
"@sourceregistry/semantic-release-jsr",
{
"pkgRoot": "generated/jsr-publish",
"configFile": "jsr.json",
"allowSlowTypes": true
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "node-firecracker(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
}