-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.33 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
{
"name": "skills",
"version": "0.5.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"image-tools": "bun apps/image-tools-cli/src/cli.ts",
"text-tools": "bun apps/text-tools-cli/src/cli.ts",
"video-tools": "bun apps/video-tools-cli/src/cli.ts",
"install:skills": "bun scripts/install-skills.ts",
"validate:skills": "bun apps/catalog-validation-cli/src/cli.ts",
"link:cli": "bun link --cwd apps/image-tools-cli && bun link --cwd apps/text-tools-cli && bun link --cwd apps/video-tools-cli",
"typecheck": "tsc --noEmit -p tsconfig.scripts.json && bun scripts/run-workspaces.ts typecheck",
"test": "bun scripts/run-workspaces.ts test && bun run test:scripts",
"check": "vp check && bun run validate:skills && bun run typecheck && bun run test",
"test:scripts": "bun test scripts/tests/",
"prepare": "test ! -x node_modules/.bin/vp || vp config --no-agent"
},
"dependencies": {
"@caiopizzol/catalog-validation": "workspace:*"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"typescript": "7.0.2",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"overrides": {
"vite": "catalog:"
},
"packageManager": "bun@1.3.12",
"catalog": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
"vite-plus": "0.2.6"
}
}