-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "@alkinum/replicate-cli",
"version": "0.1.0",
"description": "AI-first Replicate CLI for model discovery, schema inspection, predictions, artifacts, and resource management.",
"type": "module",
"license": "MIT",
"author": "Alkinum",
"bin": {
"replicate": "./dist/cli.js"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "pnpm run clean && tsup",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"dev": "tsx src/cli.ts",
"format": "prettier --write .",
"link:global": "pnpm build && pnpm link --global",
"lint": "eslint .",
"prepack": "pnpm build",
"prepublishOnly": "pnpm run check",
"publish:public": "pnpm run check && npm publish --access public",
"release:check": "pnpm run check && pnpm build",
"release:dry-run": "pnpm run check && npm pack --dry-run",
"start": "tsx src/cli.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^8.5.1",
"commander": "^15.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"packageManager": "pnpm@10.24.0"
}