-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.49 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.49 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
41
42
43
44
45
46
47
{
"name": "state-sync-workspace",
"version": "0.0.0",
"private": true,
"author": "777genius <iliyazelenkog@gmail.com>",
"type": "module",
"packageManager": "pnpm@8.15.1",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"build": "pnpm -r build",
"docs:api": "typedoc --options typedoc.json --entryPoints packages/core/src/index.ts --out docs/api/core && typedoc --options typedoc.json --entryPoints packages/persistence/src/index.ts --out docs/api/persistence && typedoc --options typedoc.json --entryPoints packages/pinia/src/index.ts --out docs/api/pinia && typedoc --options typedoc.json --entryPoints packages/tauri/src/index.ts --out docs/api/tauri && typedoc --options typedoc.json --entryPoints packages/electron/src/index.ts --out docs/api/electron && typedoc --options typedoc.json --entryPoints packages/redux/src/index.ts --out docs/api/redux && typedoc --options typedoc.json --entryPoints packages/jotai/src/index.ts --out docs/api/jotai && typedoc --options typedoc.json --entryPoints packages/mobx/src/index.ts --out docs/api/mobx && typedoc --options typedoc.json --entryPoints packages/zustand/src/index.ts --out docs/api/zustand && typedoc --options typedoc.json --entryPoints packages/valtio/src/index.ts --out docs/api/valtio && typedoc --options typedoc.json --entryPoints packages/svelte/src/index.ts --out docs/api/svelte && typedoc --options typedoc.json --entryPoints packages/vue/src/index.ts --out docs/api/vue",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm -r build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@braintree/sanitize-url": "^7.1.2",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.29.8",
"@shikijs/transformers": "^3.22.0",
"cytoscape": "^3.33.1",
"cytoscape-cose-bilkent": "^4.1.0",
"dayjs": "^1.11.19",
"debug": "^4.4.3",
"mermaid": "^11.12.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitepress-codeblock-collapse": "^1.0.0",
"vitepress-mermaid-zoom": "^1.0.1",
"vitepress-plugin-llms": "^1.11.0",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.0.18"
}
}