-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.63 KB
/
package.json
File metadata and controls
47 lines (47 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
{
"name": "nylio-cli",
"version": "0.1.7",
"description": "Open-source CLI for the Nylio public API",
"license": "MIT",
"type": "module",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22"
},
"bin": {
"nylio": "dist/index.js"
},
"files": ["dist", "README.md"],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/prodev1000/nylio-cli.git"
},
"bugs": {
"url": "https://github.com/prodev1000/nylio-cli/issues"
},
"homepage": "https://github.com/prodev1000/nylio-cli",
"keywords": ["nylio", "cli", "oauth", "mcp"],
"publishConfig": {
"access": "public"
},
"scripts": {
"ci": "turbo run lint typecheck build",
"check:publish-safety": "node ./scripts/check-publish-safety.mjs",
"build": "tsc -p tsconfig.build.json && chmod +x dist/index.js",
"build:binary:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 --outfile dist/nylio-darwin-arm64 ./src/index.ts",
"build:binary:darwin-x64": "bun build --compile --target=bun-darwin-x64 --outfile dist/nylio-darwin-x64 ./src/index.ts",
"lint": "biome check package.json README.md src scripts .github/workflows",
"pack:dry-run": "npm pack --dry-run",
"release:artifacts": "node ./scripts/build-release-artifacts.mjs",
"prepack": "turbo run check:publish-safety build",
"prepublishOnly": "turbo run check:publish-safety lint typecheck build && npm pack --dry-run",
"publish:npm": "npm publish --provenance",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.15.30",
"@biomejs/biome": "^1.9.4",
"turbo": "^2.8.1",
"typescript": "^5.9.3"
}
}