forked from benjitaylor/agentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.13 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.13 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
{
"name": "agentation-monorepo",
"version": "0.0.1",
"private": true,
"packageManager": "bun@1.3.10",
"scripts": {
"dev": "bun run --filter ./packages/agentation watch & bun run --filter ./packages/example dev",
"storybook": "bun run --filter ./packages/agentation storybook",
"typecheck": "bun run --if-present --workspaces typecheck",
"pretest": "bun run typecheck",
"test": "bun run --if-present --workspaces test",
"test:watch": "bun run --if-present --workspaces test:watch",
"build": "bun run build:agentation && AGENTATION_SKIP_PREBUILD=1 bun run --filter ./packages/example build",
"build:agentation": "bun run --filter ./packages/agentation build",
"build:storybook": "bun run --filter ./packages/agentation build-storybook",
"clean:node_modules": "bun run ./scripts/cleanNodeModules.ts",
"pack": "bun run build && cd packages/agentation && npm pack",
"publish:agentation": "cd packages/agentation && npm publish --access public",
"publish:all": "bun run publish:agentation"
},
"workspaces": [
"packages/*"
],
"trustedDependencies": [
"better-sqlite3",
"esbuild"
]
}