-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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
{
"name": "stackone-connectors",
"version": "1.0.0",
"description": "StackOne Connectors",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"clean": "rimraf dist",
"build": "node --import=tsx ./scripts/build.ts",
"prebuild:watch": "npm run clean && npm run build",
"build:watch": "node --import=tsx ./scripts/build-watch.ts",
"lint": "biome check ./connectors ./scripts",
"lint:fix": "biome check --write ./connectors ./scripts",
"loop-claude": "bash claude-iterations/run.sh",
"setup:hooks": "sh scripts/setup-git-hooks.sh",
"setup:mcp": "node --import=tsx ./scripts/generate-mcp-config.ts",
"postinstall": "npm run setup:hooks"
},
"dependencies": {
"@stackone/agent-config": "^1.4.0",
"@stackone/cli": "1.24.0",
"@stackone/connect-sdk": "2.41.0",
"@stackone/core": "2.27.2",
"@stackone/expressions": "0.25.0",
"@stackone/utils": "0.19.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@biomejs/js-api": "4.0.0",
"@types/node": "22.14.1",
"chalk": "5.6.2",
"chokidar": "4.0.3",
"ora": "9.0.0",
"rimraf": "6.1.2",
"tsx": "4.20.6"
},
"overrides": {
"axios": "1.13.6",
"qs": "6.15.0",
"fast-xml-parser": "5.5.3"
}
}