-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.17 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.17 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
{
"name": "unpkg-dev",
"private": true,
"type": "module",
"packageManager": "pnpm@10.15.0",
"engines": {
"bun": ">=1.2.8"
},
"scripts": {
"build": "pnpm -r run build",
"clean": "git clean -fdX .",
"clean:reports": "node -e \"fs.rmSync('.reports', { recursive: true, force: true }); fs.mkdirSync('.reports', { recursive: true });\"",
"deploy:app": "pnpm --filter unpkg-app run deploy",
"deploy:esm": "pnpm --filter unpkg-esm run deploy",
"deploy:www": "pnpm --filter unpkg-www run deploy",
"deploy:workers": "pnpm run deploy:www && pnpm run deploy:app && pnpm run deploy:esm",
"deploy:workers:staging": "pnpm --filter unpkg-www run deploy:staging && pnpm --filter unpkg-app run deploy:staging && pnpm --filter unpkg-esm run deploy:staging",
"pretest": "pnpm run build",
"test": "pnpm -r test",
"test:esm-browser": "bun scripts/esm-browser-smoke.ts",
"test:esm-readiness": "bun scripts/esm-beta-readiness.ts",
"test:esm-compat": "bun scripts/esm-compat-suite.ts",
"test:esm-compat:local-baseline": "ESM_SH_ORIGIN=http://localhost:8081 bun scripts/esm-compat-suite.ts",
"vendor:esm-sh": "scripts/esm-sh-baseline/run.sh"
}
}