-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.46 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
{
"name": "artemis",
"version": "0.1.0",
"private": true,
"description": "Agent Reliability Toolkit - Test, validate, stress-test, and audit LLM-driven agents",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/code-sensei/artemiskit.git"
},
"license": "Apache-2.0",
"author": "code-sensei",
"workspaces": ["packages/*", "packages/adapters/*"],
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"build": "bun run --filter '*' build",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format": "biome format --write .",
"typecheck": "bun run --filter '*' typecheck",
"clean": "bun run --filter '*' clean",
"dev": "bun run --filter '@artemiskit/cli' dev",
"db:migrate": "bunx supabase db push",
"db:generate-types": "bunx supabase gen types typescript --local > packages/core/src/storage/database.types.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "bun format && ./scripts/publish.sh"
},
"devDependencies": {
"@artemiskit/cli": "workspace:*",
"@biomejs/biome": "^1.5.0",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@types/bun": "^1.1.0",
"@types/inquirer": "9.0.9",
"supabase": "^1.130.0",
"typescript": "^5.3.0"
},
"engines": {
"bun": ">=1.1.0"
}
}