-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 754 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test:cljam": "bun run --filter '@regibyte/cljam' test",
"test:cljam-date": "bun run --filter '@regibyte/cljam-date' test",
"test:cljam-integrant": "bun run --filter '@regibyte/cljam-integrant' test",
"test:cljam-schema": "bun run --filter '@regibyte/cljam-schema' test",
"test": "bun run test:cljam && bun run test:cljam-date && bun run test:cljam-integrant && bun run test:cljam-schema",
"build": "bun run --filter '@regibyte/cljam' build-vite-plugin",
"dev": "bun run --filter 'playground' dev",
"repl": "bun run --filter 'cljam' repl",
"nrepl": "bun run --filter 'cljam' nrepl",
"playground": "bun run --filter 'playground' dev"
}
}