-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) 路 981 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) 路 981 Bytes
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
{
"name": "sync-engine",
"version": "0.0.1",
"private": true,
"license": "MIT",
"workspaces": [
"./packages/*",
"./docs"
],
"type": "module",
"scripts": {
"postinstall": "cd packages/plugin && bun compile",
"dev:plugin": "cd packages/plugin && bun dev:plugin",
"build:plugin": "cd packages/plugin && bun build:plugin",
"dev:docs": "cd docs && bun dev:docs",
"build:docs": "cd docs && bun build:docs",
"dev": "bun turbo run dev",
"compile": "bun turbo run compile",
"ver": "bun scripts/version-bump.ts",
"fix": "bun turbo run fix",
"check": "bun turbo run check",
"tests": "bun turbo run tests"
},
"devDependencies": {
"@obsidian-typings/obsidian-public-latest": "^6.32.0",
"@tsdown/css": "^0.22.14",
"@types/bun": "^1.3.14",
"obsidian": "^1.13.1",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.14",
"turbo": "^2.10.11",
"typescript": "^6.0.3"
},
"packageManager": "bun@1.3.13"
}