-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.96 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "scope3",
"version": "1.1.0",
"description": "CLI and TypeScript client for the Scope3 Agentic API with AdCP webhook support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
".env.example"
],
"publishConfig": {
"access": "public"
},
"bin": {
"outcome-agent": "dist/outcome-agent-server.js",
"scope3": "dist/cli.js"
},
"scripts": {
"build": "npm run type-check && tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"start:outcome-agent": "npm run build && node dist/outcome-agent-server.js",
"generate-outcome-agent-types": "openapi-typescript outcome-agent-openapi.yaml -o src/types/outcome-agent-api.ts",
"generate-partner-api-types": "openapi-typescript partner-api.yaml -o src/types/partner-api.ts",
"generate-platform-api-types": "openapi-typescript platform-api.yaml -o src/types/platform-api.ts",
"update-schemas": "curl -f -o outcome-agent-openapi.yaml https://raw.githubusercontent.com/scope3data/agentic-api/main/mintlify/outcome-agent-openapi.yaml && curl -f -o partner-api.yaml https://raw.githubusercontent.com/scope3data/agentic-api/main/mintlify/partner-api.yaml && curl -f -o platform-api.yaml https://raw.githubusercontent.com/scope3data/agentic-api/main/mintlify/platform-api.yaml && npm run generate-outcome-agent-types && npm run generate-partner-api-types && npm run generate-platform-api-types",
"prepare": "husky",
"prepublishOnly": "npm run build",
"pretest": "npm run type-check",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [
"scope3",
"advertising",
"agentic",
"adcp",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/scope3data/agentic-client.git",
"directory": "."
},
"bugs": {
"url": "https://github.com/scope3data/agentic-client/issues"
},
"homepage": "https://github.com/scope3data/agentic-client#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"express": "^4.18.0",
"fastmcp": "^3.20.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@types/express": "^4.17.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"husky": "^9.0.0",
"jest": "^29.5.0",
"lint-staged": "^15.0.0",
"openapi-typescript": "^6.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}