-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.77 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.77 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@stackone/ai",
"version": "2.5.0",
"description": "Tools for agents to perform actions on your SaaS",
"keywords": [
"agents",
"ai",
"ai sdk",
"mcp",
"model context protocol",
"stackone",
"tools"
],
"homepage": "https://github.com/StackOneHQ/stackone-ai-node#readme",
"bugs": "https://github.com/StackOneHQ/stackone-ai-node/issues",
"license": "Apache-2.0",
"author": "StackOne",
"repository": {
"type": "git",
"url": "git+https://github.com/StackOneHQ/stackone-ai-node.git"
},
"files": [
"dist",
"LICENSE",
"README.md",
"src",
"!examples/*.test.ts",
"examples/*.ts",
"!src/**/*.test-d.ts",
"!src/**/*.test.ts"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
},
"scripts": {
"build": "tsdown",
"format": "pnpm --no-bail --aggregate-output run '/^format:/'",
"format:oxfmt": "oxfmt --no-error-on-unmatched-pattern .",
"format:oxlint": "oxlint --max-warnings=0 --type-aware --type-check --fix",
"format:knip": "knip --fix --no-exit-code",
"lint": "pnpm --aggregate-output run '/^lint:/'",
"lint:oxfmt": "oxfmt --no-error-on-unmatched-pattern --check .",
"lint:oxlint": "oxlint --max-warnings=0 --type-aware --type-check",
"lint:knip": "knip",
"preinstall": "npx only-allow pnpm",
"prepack": "npm pkg delete scripts.preinstall && pnpm run build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "catalog:prod",
"@orama/orama": "catalog:prod",
"defu": "catalog:prod"
},
"devDependencies": {
"@fast-check/vitest": "catalog:dev",
"@hono/mcp": "catalog:dev",
"@types/node": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"ai": "catalog:dev",
"hono": "catalog:dev",
"knip": "catalog:dev",
"msw": "catalog:dev",
"openai": "catalog:peer",
"publint": "catalog:dev",
"tsdown": "catalog:dev",
"type-fest": "catalog:dev",
"unplugin-unused": "catalog:dev",
"vitest": "catalog:dev",
"zod": "catalog:dev"
},
"peerDependencies": {
"@anthropic-ai/claude-agent-sdk": "catalog:peer",
"@anthropic-ai/sdk": "catalog:peer",
"ai": "catalog:peer",
"openai": "catalog:peer",
"zod": "catalog:peer"
},
"peerDependenciesMeta": {
"@anthropic-ai/claude-agent-sdk": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
},
"ai": {
"optional": true
},
"openai": {
"optional": true
}
},
"devEngines": {
"runtime": [
{
"name": "node",
"version": "^24.11.0",
"onFail": "download"
}
]
},
"engines": {
"node": ">=20.19.6"
},
"packageManager": "pnpm@10.26.0"
}