-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"name": "@egnyte/agentic-cli",
"version": "1.0.1",
"description": "Egnyte CLI designed for AI agent consumption — zero runtime dependencies, agent-first design",
"main": "./src/index.js",
"bin": {
"egnyte": "./bin/egnyte"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/egnyte/agentic-cli.git"
},
"keywords": [
"egnyte",
"cli",
"file-management",
"ai-agent",
"storage"
],
"author": "egnyte",
"license": "Apache-2.0",
"files": [
"bin/",
"src/",
"CLAUDE.md",
"AGENTS.md",
"README.md"
],
"scripts": {
"test": "jasmine",
"test:large": "jasmine --config=spec/support/jasmine-large.json --random=false",
"lint": "node --check src/index.js src/lib/*.js src/commands/*.js && echo OK",
"prepublishOnly": "npm run lint && npm test",
"release": "VERSION=$(node -p \"require('./package.json').version\") && npm view @egnyte/agentic-cli@$VERSION version --registry https://nexus3.egnyte-internal.com/repository/integrations-nexus/ 2>/dev/null && echo \"Version $VERSION already published, skipping.\" || npm publish",
"build:binaries": "pkg . --compress GZip --targets node18-macos-x64,node18-macos-arm64,node18-win-x64,node18-win-arm64,node18-linux-x64,node18-linux-arm64 --output dist/binaries/egnyte"
},
"pkg": {
"scripts": "src/**/*.js",
"assets": [],
"targets": [
"node18-macos-x64",
"node18-macos-arm64",
"node18-win-x64",
"node18-win-arm64",
"node18-linux-x64",
"node18-linux-arm64"
],
"outputPath": "dist/binaries"
},
"publishConfig": {
"@egnyte:registry": "https://nexus3.egnyte-internal.com/repository/integrations-nexus/"
},
"devDependencies": {
"jasmine": "^5.13.0",
"@yao-pkg/pkg": "^5.12.0"
}
}