-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
48
{
"name": "orgajs",
"private": true,
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@changesets/cli": "^2.29.8",
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/language": "^6.10.8",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.2",
"@lezer/highlight": "^1.2.1",
"@orgajs/orgx": "workspace:^",
"@orgajs/react-cm": "workspace:^",
"@orgajs/react-editor": "workspace:^",
"@tailwindcss/typography": "^0.5.9",
"@tailwindcss/vite": "^4.1.4",
"@types/node": "^25.3.2",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"daisyui": "^5.0.28",
"orga-build": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-pretty-code": "^0.14.1",
"shiki": "^3.23.0",
"tailwindcss": "^4.0.3",
"type-coverage": "^2.29.7",
"typescript": "^5.9.2",
"unist-util-map": "4.0.0",
"vfile": "^6.0.3"
},
"scripts": {
"build": "pnpm -r --filter './packages/*' --if-present run build && tsc --build --clean && tsc --build && type-coverage",
"clean": "tsc --build --clean",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"test": "pnpm run check && pnpm -r --filter './packages/*' --if-present run test",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check . --write",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:publish": "pnpm build && changeset publish",
"docs": "orga-build",
"docs:dev": "orga-build dev"
}
}