-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.42 KB
/
package.json
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
{
"name": "@cf-wasm/root",
"private": true,
"description": "A collection of WASM packages those work on Cloudflare Workers",
"author": "Deo Kumar",
"homepage": "https://github.com/fineshopdesign/cf-wasm",
"packageManager": "[email protected]",
"scripts": {
"check": "pnpm biome check .",
"check:fix": "pnpm biome check --write .",
"check:types": "turbo check:types --force --concurrency=1",
"upgrade": "ncu --interactive --workspaces --root",
"build": "turbo run build --concurrency=1",
"dev": "turbo run dev",
"start": "turbo run start",
"clean": "turbo run clean --concurrency=1",
"test": "turbo run test --concurrency=1",
"publish-packages": "cross-env PUBLISH=true pnpm run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@cloudflare/workers-types": "^4.20250129.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.12.0",
"console-log-colors": "^0.5.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"esbuild": "^0.24.2",
"fs-extra": "^11.3.0",
"github-files-fetcher": "^1.6.0",
"glob": "^11.0.1",
"npm-check-updates": "^17.1.14",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"turbo": "^2.3.4",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"wasm-pack": "^0.13.1"
}
}