-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.08 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
{
"name": "kandelo",
"private": true,
"type": "module",
"scripts": {
"wordpress:build": "bash packages/registry/wordpress/demo/build.sh",
"wordpress:serve": "npx tsx packages/registry/wordpress/demo/serve.ts",
"wordpress:benchmark": "npx tsx packages/registry/wordpress/demo/perf/benchmark.ts",
"docs:dev": "vitepress dev docs-site --host 127.0.0.1",
"docs:build": "vitepress build docs-site",
"docs:preview": "vitepress preview docs-site --host 127.0.0.1",
"bench": "npx tsx benchmarks/run.ts",
"bench:browser": "npx tsx benchmarks/run.ts --host browser",
"bench:compare": "npx tsx benchmarks/compare.ts",
"bench:php-mariadb": "npx tsx benchmarks/php-mariadb-transport.ts",
"pack:host": "npm --prefix host pack",
"pack:sdk": "npm --prefix sdk pack",
"pack:packages": "npm run pack:host && npm run pack:sdk"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"playwright": "^1.59.1",
"tsx": "^4.21.0",
"vitepress": "^1.6.4"
},
"dependencies": {
"fflate": "^0.8.3",
"fzstd": "^0.1.1",
"vite": "^8.0.3"
}
}