-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.11 KB
/
package.json
File metadata and controls
21 lines (21 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "coco-cashu",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"tsdown": "^0.20.0-beta.4"
},
"peerDependencies": {},
"dependencies": {
"@changesets/cli": "^2.29.8"
},
"scripts": {
"build": "bun run --filter='coco-cashu-core' build && bun run --filter='coco-cashu-adapter-tests' build && bun run --filter='coco-cashu-indexeddb' build && bun run --filter='coco-cashu-expo-sqlite' build && bun run --filter='coco-cashu-sqlite3' build && bun run --filter='coco-cashu-sqlite-bun' build && bun run --filter='coco-cashu-react' build",
"typecheck": "bun run --filter='coco-cashu-core' typecheck && bun run --filter='coco-cashu-adapter-tests' typecheck && bun run --filter='coco-cashu-indexeddb' typecheck && bun run --filter='coco-cashu-expo-sqlite' typecheck && bun run --filter='coco-cashu-sqlite3' typecheck && bun run --filter='coco-cashu-sqlite-bun' typecheck && bun run --filter='coco-cashu-react' typecheck",
"docs:dev": "vitepress dev packages/docs",
"docs:build": "vitepress build packages/docs",
"docs:preview": "vitepress preview packages/docs"
}
}