-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.85 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
{
"name": "@adminyo/cli",
"version": "0.3.1",
"description": "YAML-driven admin panel (native CLI via optional platform packages)",
"keywords": [
"rust",
"admin",
"dashboard",
"yml",
"whitelabel",
"admin-panel",
"backoffice",
"yaml",
"multi-tenant"
],
"license": "MIT",
"homepage": "https://adminyo.felipeinf.com",
"repository": {
"type": "git",
"url": "https://github.com/felipeinf/adminyo.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build:ui": "npm run build --prefix ui",
"build:rust": "cargo build --manifest-path cli/Cargo.toml --release",
"sync:native": "node scripts/sync-native-bin.js",
"build:native": "npm run build:ui && npm run build:rust && npm run sync:native",
"build:native:all": "bash scripts/build-all-native.sh",
"pack:root": "npm pack --dry-run",
"pack:native": "npm run build:native && cd npm/$(node scripts/sync-native-bin.js --print-dir) && npm pack --dry-run",
"publish:native": "npm run build:native && cd npm/$(node scripts/sync-native-bin.js --print-dir) && npm publish --access public",
"publish:native:dry": "npm run build:native && cd npm/$(node scripts/sync-native-bin.js --print-dir) && npm publish --dry-run --access public",
"publish:root": "npm publish --access public",
"publish:root:dry": "npm publish --dry-run --access public",
"publish:native:all": "for d in darwin-arm64 darwin-x64 linux-arm64 linux-x64 win32-x64; do ( cd \"npm/$d\" && npm publish --access public ) || exit 1; done"
},
"bin": {
"nyo": "bin/nyo.js"
},
"files": [
"bin",
"README.md",
"LICENSE"
],
"optionalDependencies": {
"@adminyo/cli-darwin-arm64": "0.3.1",
"@adminyo/cli-darwin-x64": "0.3.1",
"@adminyo/cli-linux-x64": "0.3.1",
"@adminyo/cli-linux-arm64": "0.3.1",
"@adminyo/cli-win32-x64": "0.3.1"
}
}