-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 969 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 969 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
{
"name": "loro-mirror-monorepo",
"version": "0.1.0",
"private": true,
"description": "Monorepo for Loro Mirror: core, React, and Jotai packages for CRDT-backed state.",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"lint": "oxlint --type-aware",
"format": "prettier --write .",
"typecheck": "pnpm -r typecheck",
"bench:ephemeral": "pnpm --filter loro-mirror bench:ephemeral",
"check": "pnpm build && pnpm test && pnpm lint && pnpm typecheck"
},
"keywords": [
"loro",
"loro-crdt",
"crdt",
"state-management",
"react",
"jotai",
"mirror"
],
"author": "Loro Team",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"oxlint": "^1.12.0",
"oxlint-tsgolint": "^0.0.4",
"prettier": "^3.6.2",
"typescript": "^4.7.0",
"vitest": "^3.2.4"
}
}