forked from udecode/plate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 6.65 KB
/
package.json
File metadata and controls
161 lines (161 loc) · 6.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "plate",
"private": true,
"license": "MIT",
"scripts": {
"brl": "pnpm g:brl",
"build": "pnpm g:build",
"build:apps": "turbo --filter \"./apps/www\" build",
"build:tw": "pnpm --filter www build:tw",
"build:watch": "ROARR_LOG=true turbowatch ./tooling/config/turbowatch.config.ts | roarr",
"check": "pnpm lint && pnpm typecheck && bun test",
"deps:check": "npx npm-check-updates@latest --configFileName config/ncurc.yml --workspaces --root --mergeConfig",
"deps:update": "npx npm-check-updates@latest --configFileName config/ncurc.yml -u --workspaces --root --mergeConfig",
"dev": "turbo --filter=www dev",
"dev:webrtc": "PORT=4444 node ./node_modules/y-webrtc/bin/server.js",
"devt": "pnpm --filter www devt",
"docs:build": "cd docs && pnpm install && pnpm build",
"docs:start": "cd docs && pnpm install && pnpm start",
"e2e": "pnpm exec playwright test --config tooling/config/playwright.config.ts",
"g:brl": "turbo --filter \"./packages/**\" brl",
"g:build": "turbo --filter \"./packages/**\" build",
"g:build:watch": "pnpm build:watch",
"g:changeset": "changeset",
"g:clean": "turbo --filter \"./packages/**\" clean",
"g:dev": "turbo --filter=www dev",
"g:lint": "turbo --filter \"./packages/**\" lint",
"g:lint:fix": "turbo lint:fix",
"g:plate-ui": "cd ${INIT_CWD:-.} && COMPONENTS_REGISTRY_URL=http://localhost:3000 pnpm exec plate-ui",
"g:r": "pnpm --filter www r",
"g:rd": "pnpm --filter www rd",
"g:release:next": "pnpm build && pnpm changeset publish --tag next",
"g:typecheck": "turbo --filter \"./packages/**\" typecheck",
"g:typecheck:all": "turbo typecheck",
"gen:package": "pnpm exec plop --plopfile tooling/scripts/plop/plopfile.cjs package",
"lint": "biome check . && eslint",
"lint:fix": "biome check . --fix",
"nuke:node_modules": "rimraf '**/node_modules'",
"p:brl": "sh tooling/scripts/brl.sh",
"p:build": "cd ${INIT_CWD:-.} && pnpm p:tsdown",
"p:build:watch": "cd ${INIT_CWD:-.} && pnpm exec tsdown --config=${PROJECT_CWD:-.}/tooling/config/tsdown.config.ts --log-level warn --watch",
"p:clean": "cd ${INIT_CWD:-.} && rimraf dist",
"p:lint": "biome check ${INIT_CWD:-.}",
"p:lint:fix": "biome check ${INIT_CWD:-.} --fix",
"p:test": "cd ${INIT_CWD:-.} && bun test",
"p:tsdown": "cd ${INIT_CWD:-.} && pnpm exec tsdown --config=${PROJECT_CWD:-.}/tooling/config/tsdown.config.ts --log-level warn",
"p:typecheck": "tsc -p ./tsconfig.json",
"prepare": "pnpm dlx skiller@latest apply",
"r": "pnpm --filter www r",
"rc": "turbo --filter=www rc",
"rd": "pnpm --filter www rd",
"release": "pnpm build && pnpm changeset publish",
"shadcn:build": "pnpm --filter www shadcn:build",
"templates:ai": "./tooling/scripts/update-template.sh ai",
"templates:basic": "./tooling/scripts/update-template.sh basic",
"templates:check": "cd templates/plate-template && pnpm lint && pnpm typecheck && cd ../plate-playground-template && pnpm lint && pnpm typecheck",
"templates:push": "./tooling/scripts/push-template.sh \"templates/*\"",
"templates:test": "cd templates/plate-template && npx shadcn@latest add http://localhost:3000/rd/editor-ai -o && pnpm lint && pnpm typecheck",
"templates:update": "./tooling/scripts/update-templates.sh",
"test": "bun tooling/scripts/test-fast.mjs",
"test:coverage": "bun test --coverage",
"test:slowest": "bun tooling/scripts/test-slowest.mjs",
"test:slowest:all": "bun tooling/scripts/test-slowest.mjs --all",
"test:types": "tsc -p tooling/config/tsconfig.type-tests.json --noEmit",
"test:watch": "bun tooling/scripts/test-fast.mjs --watch",
"translate": "ts-node tooling/scripts/translate.mjs",
"typecheck": "pnpm g:typecheck",
"typecheck:all": "pnpm g:typecheck:all"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@changesets/cli": "2.29.7",
"@changesets/get-github-info": "0.6.0",
"@happy-dom/global-registrator": "20.0.10",
"@hocuspocus/provider": "3.4.4",
"@platejs/basic-nodes": "workspace:^",
"@platejs/basic-styles": "workspace:^",
"@platejs/code-block": "workspace:^",
"@platejs/combobox": "workspace:^",
"@platejs/docx": "workspace:^",
"@platejs/indent": "workspace:^",
"@platejs/juice": "workspace:^",
"@platejs/link": "workspace:^",
"@platejs/list": "workspace:^",
"@platejs/list-classic": "workspace:^",
"@platejs/markdown": "workspace:^",
"@platejs/math": "workspace:^",
"@platejs/media": "workspace:^",
"@platejs/mention": "workspace:^",
"@platejs/selection": "workspace:^",
"@platejs/slate": "workspace:^",
"@platejs/suggestion": "workspace:^",
"@platejs/table": "workspace:^",
"@platejs/test-utils": "workspace:^",
"@playwright/test": "1.53.0",
"@roarr/cli": "5.12.4",
"@rollup/plugin-babel": "6.1.0",
"@swc/core": "1.12.0",
"@tailwindcss/postcss": "4.1.8",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/bun": "1.3.2",
"@types/is-hotkey": "0.1.10",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.17",
"@types/node": "24.12.0",
"@types/prismjs": "1.26.5",
"@types/prompts": "2.4.9",
"@types/raf": "3.4.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/validator": "13.15.1",
"@typescript-eslint/parser": "^8.47.0",
"app-root-path": "3.1.0",
"autoprefixer": "10.4.21",
"babel-plugin-react-compiler": "1.0.0",
"barrelsby": "2.8.1",
"bun": "1.3.9",
"bun-types": "1.3.9",
"class-variance-authority": "0.7.1",
"commander": "14.0.1",
"concurrently": "9.1.2",
"cross-env": "7.0.3",
"dotenv": "16.5.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "7.0.1",
"openai": "5.3.0",
"platejs": "workspace:^",
"prompts": "2.4.2",
"react": "19.2.3",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dnd-test-backend": "16.0.1",
"react-dom": "19.2.3",
"rimraf": "6.0.1",
"slate-test-utils": "1.3.2",
"tailwind-merge": "3.3.1",
"tailwindcss": "4.1.8",
"tinyglobby": "0.2.14",
"tsdown": "0.16.6",
"turbo": "2.6.1",
"turbowatch": "2.29.4",
"typescript": "5.8.3",
"typescript-eslint": "^8.47.0",
"ultracite": "6.3.4",
"y-webrtc": "10.3.0",
"zod": "4.1.12"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=9.15.0"
},
"pnpm": {
"patchedDependencies": {
"is-hotkey@0.2.0": "patches/is-hotkey@0.2.0.patch",
"react-dnd@16.0.1": "patches/react-dnd@16.0.1.patch"
}
}
}