-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "@arcadeai/create-agent",
"version": "0.5.3",
"type": "module",
"description": "Scaffold an Arcade-powered AI agent",
"license": "MIT",
"bin": {
"create-agent": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ArcadeAI/create-arcade-agent.git"
},
"homepage": "https://github.com/ArcadeAI/create-arcade-agent#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"cross-spawn": "^7.0.6",
"handlebars": "^4.7.8",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^20.0.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1"
},
"engines": {
"node": ">=22.0.0"
}
}