-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.96 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.96 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": "@sejori/peko",
"version": "2.4.1",
"description": "Featherweight apps on the edge 🐣⚡",
"main": "dist/mod.js",
"directories": {
"example": "examples",
"lib": "lib",
"scripts": "scripts"
},
"type": "module",
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "esbuild --bundle --sourcemap --target=es2020 --format=esm --outdir=./dist ./mod.ts",
"build:types": "tsc -p tsconfig.json && deno -A scripts/stripExtensions.ts",
"dev:build": "esbuild --bundle --sourcemap --target=es2020 --platform=browser --format=esm --outdir=./examples/react/dist/pages --external:react --jsx=automatic --tsconfig-raw={} --watch=forever ./examples/react/src/pages/*.tsx",
"dev:deno": "deno run -A --watch scripts/deno/main.ts",
"dev:bun": "bun run --watch scripts/bun/main.ts",
"dev:wrangler": "wrangler -e dev dev scripts/wrangler/main.ts",
"profile:deno": "deno run --allow-read --allow-net scripts/deno/profile.ts",
"profile:bun": "bun run scripts/bun/profile.ts",
"profile:wrangler": "wrangler dev scripts/wrangler/profile.ts",
"start": "deno run --allow-net --allow-read --allow-env --allow-run scripts/deno/main.ts",
"start:auth": "deno run --allow-net --allow-read --allow-env --allow-run scripts/deno/auth.ts",
"start:wrangler": "wrangler dev scripts/wrangler/main.ts",
"test": "deno test --allow-read --allow-net --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sejori/peko.git"
},
"author": "Seb Ringrose <sebringrose@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sejori/peko/issues"
},
"homepage": "https://github.com/sejori/peko#readme",
"devDependencies": {
"@cloudflare/workers-types": "^4.20250703.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"esbuild": "^0.25.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"ts-node": "^10.9.2",
"wrangler": "^4.23.0"
}
}