-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "@jeremyfellaz/maximus",
"version": "0.1.4",
"description": "Canonical Rust runtime launcher for the Maximus CLI.",
"author": "JeremyDev87",
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"maximus": "./bin/maximus.js"
},
"files": [
"bin",
"src",
"README.md",
"README.en.md",
"CONTRIBUTING.md",
"LICENSE"
],
"optionalDependencies": {
"@jeremyfellaz/maximus-darwin-arm64": "0.1.4",
"@jeremyfellaz/maximus-darwin-x64": "0.1.4",
"@jeremyfellaz/maximus-linux-arm64-gnu": "0.1.4",
"@jeremyfellaz/maximus-linux-x64-gnu": "0.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeremyDev87/maximus.git"
},
"homepage": "https://github.com/JeremyDev87/maximus#readme",
"bugs": {
"url": "https://github.com/JeremyDev87/maximus/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/JeremyDev87"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"audit": "node ./bin/maximus.js audit",
"doctor": "node ./bin/maximus.js doctor",
"fix": "node ./bin/maximus.js fix",
"release:docs": "node ./scripts/update-release-docs.mjs",
"release:docs:check": "node ./scripts/update-release-docs.mjs --check",
"test": "node --test"
},
"keywords": [
"cli",
"config",
"rust",
"canonical-runtime",
"launcher",
"audit",
"doctor",
"fix",
"eslint",
"prettier",
"tsconfig",
"env"
],
"license": "MIT",
"engines": {
"node": ">=20"
}
}