-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 847 Bytes
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
{
"name": "filebox-agent-skill",
"version": "0.1.0",
"description": "Installer for the FileBox Activity agent skill.",
"bin": {
"filebox-agent-skill": "bin/filebox-agent-skill.js"
},
"files": [
"bin/",
"lib/",
"docs/",
"skills/filebox-activity/",
"README.md"
],
"scripts": {
"test": "node --test test/*.test.js",
"check:secrets": "./scripts/check_no_secrets.sh",
"check:package": "./scripts/check_npm_package_no_secrets.sh",
"check": "npm test && ./scripts/check_public_repo_clean.sh && npm run check:secrets",
"check:release": "npm run check && npm run check:package",
"prepack": "npm run check",
"prepublishOnly": "npm run check:release"
},
"keywords": [
"filebox",
"codex",
"agent",
"skill"
],
"license": "MIT",
"engines": {
"node": ">=18"
}
}