-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "coco",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cashubtc/coco"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/bun": "1.3.10",
"prettier": "3.8.1",
"tsdown": "0.20.1",
"typescript": "5.9.3",
"vitepress": "2.0.0-alpha.15"
},
"overrides": {
"@types/bun": "1.3.10",
"prettier": "3.8.1",
"tsdown": "0.20.1",
"typescript": "5.9.3",
"vitepress": "2.0.0-alpha.15"
},
"peerDependencies": {},
"dependencies": {
"@changesets/cli": "^2.29.8"
},
"scripts": {
"build": "bun scripts/build.ts build",
"typecheck": "bun scripts/build.ts typecheck",
"test:coverage:core": "bun test packages/core/test/unit --coverage --coverage-reporter=lcov --coverage-dir=coverage/core",
"docs:dev": "vitepress dev packages/docs",
"docs:build": "vitepress build packages/docs",
"docs:preview": "vitepress preview packages/docs",
"format": "prettier . --write",
"format:check": "prettier . --check"
}
}