-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 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
{
"name": "tiny-runtime-injector",
"version": "1.2.0",
"description": "A library that helps you download complete, lightweight runtime environments like Node.js, Bun, uv, and Python. It's useful for including minimal runtimes when building applications like Electron.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"tiny-runtime-injector": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"README.zh.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "node test-downloads.js",
"test:auth": "npm run build && node --test test/github-auth.test.js",
"test:downloads": "npm run build && node test-downloads.js",
"test:urls": "npm run build && node -e \"import('./test-downloads.js').then(m => m.runUrlValidationTests())\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerob13/tiny-runtime-injector.git"
},
"keywords": [
"node.js",
"bun",
"uv",
"rtk",
"runtime",
"injector",
"javascript",
"python",
"package-manager",
"electron",
"cross-platform"
],
"author": "zerob13",
"license": "MIT",
"bugs": {
"url": "https://github.com/zerob13/tiny-runtime-injector/issues"
},
"homepage": "https://github.com/zerob13/tiny-runtime-injector#readme",
"dependencies": {
"axios": "^1.8.3",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.2",
"tar": "^7.4.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20"
}
}