-
-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) 路 2.27 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) 路 2.27 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
{
"name": "@tanstack/ai-code-mode-skills",
"version": "0.2.6",
"description": "Persistent runtime skill library for TanStack AI Code Mode agents and sandboxed tool orchestration.",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/ai.git",
"directory": "packages/ai-code-mode-skills"
},
"type": "module",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
},
"./storage": {
"types": "./dist/esm/storage/index.d.ts",
"import": "./dist/esm/storage/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"clean": "premove ./build ./dist",
"lint:fix": "eslint ./src --fix",
"test:build": "publint --strict",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"test:cli": "tsx test-cli/cli.ts",
"test:cli:run": "tsx test-cli/cli.ts run",
"test:cli:run:all": "tsx test-cli/cli.ts run --adapters openai,anthropic,gemini",
"test:cli:list": "tsx test-cli/cli.ts list",
"test:cli:simulated": "tsx test-cli/cli.ts simulated",
"test:cli:registry": "tsx test-cli/cli.ts registry",
"test:cli:live": "tsx test-cli/cli.ts live",
"test:cli:structured": "tsx test-cli/cli.ts structured"
},
"keywords": [
"ai",
"ai-sdk",
"typescript",
"tanstack",
"code-mode",
"skills",
"agents",
"llm",
"sandbox",
"tool-calling",
"tanstack-intent"
],
"dependencies": {
"@tanstack/ai": "workspace:*",
"@tanstack/ai-code-mode": "workspace:*"
},
"peerDependencies": {
"@tanstack/ai": "workspace:*",
"@tanstack/ai-code-mode": "workspace:*",
"zod": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@tanstack/ai-anthropic": "workspace:*",
"@tanstack/ai-gemini": "workspace:*",
"@tanstack/ai-isolate-node": "workspace:*",
"@tanstack/ai-openai": "workspace:*",
"@vitest/coverage-v8": "4.0.14",
"commander": "^13.1.0",
"dotenv": "^17.2.3",
"tsx": "^4.21.0",
"zod": "^4.2.0"
}
}