-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.93 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 1.93 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
{
"name": "@tigrisdata/agent-shell",
"version": "0.0.2",
"description": "A virtual bash environment with a persistent filesystem — backed by Tigris object storage",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agent-shell": "dist/cli.js",
"tigris-agent-shell": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./fs": {
"types": "./dist/fs/index.d.ts",
"import": "./dist/fs/index.js"
},
"./commands": {
"types": "./dist/commands/index.d.ts",
"import": "./dist/commands/index.js"
},
"./repl": {
"types": "./dist/repl/index.d.ts",
"import": "./dist/repl/index.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format --write",
"format:md": "npx prettier --write \"**/*.md\"",
"prepare": "husky"
},
"keywords": [
"ai",
"agent",
"agent-storage",
"sandbox",
"sandboxed-storage",
"bash",
"shell",
"filesystem",
"tigris",
"object-storage"
],
"author": "Tigris Data Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tigrisdata/agent-shell.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@tigrisdata/storage": "^3.2.1",
"just-bash": "^2.14.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"semantic-release": "^25.0.3",
"typescript": "~5.8.0",
"vitest": "^4.1.5"
}
}