-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.97 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
45
46
47
48
{
"name": "@sejori/peko",
"version": "2.2.0",
"description": "Featherweight apps on the edge 🐣⚡",
"main": "mod.ts",
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"type": "module",
"scripts": {
"build": "esbuild --bundle --sourcemap --target=es2020 --platform=browser --format=esm --outdir=./example/reactSSR/dist/pages --external:react --jsx=automatic --tsconfig-raw={} ./example/reactSSR/src/pages/*.tsx",
"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",
"test": "deno test --allow-read --allow-net",
"profile:deno": "deno run --allow-read --allow-net scripts/deno/profile.ts",
"profile:bun": "bun run scripts/bun/profile.ts",
"profile:wrangler": "node --loader ts-node/esm scripts/wrangler/profile.ts",
"start:wrangler": "wrangler dev scripts/wrangler/testApp.ts",
"dev:build": "esbuild --bundle --sourcemap --target=es2020 --platform=browser --format=esm --outdir=./example/reactSSR/dist/pages --external:react --jsx=automatic --tsconfig-raw={} --watch=forever ./example/reactSSR/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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sejori/peko.git"
},
"author": "Seb Ringrose <sebringrose@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sejori/peko/issues"
},
"homepage": "https://github.com/sejori/peko#readme",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240718.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.23.0",
"ts-node": "^10.9.2",
"wrangler": "^3.65.1"
}
}