-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.48 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
{
"name": "cloudflare-auth-hasher-template",
"version": "0.1.1",
"private": true,
"type": "module",
"description": "Private password hashing template for Cloudflare Workers using WorkerEntrypoint RPC, Argon2id, and a Rust/Wasm kernel.",
"packageManager": "npm@11.6.1",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node ./scripts/build-kernel.mjs",
"build:artifact": "node ./scripts/build-kernel.mjs --ignore-auth-hasher-env",
"check": "npm run build && node ./scripts/run-wrangler.mjs deploy --dry-run --config wrangler.jsonc",
"check:examples": "node ./scripts/check-examples.mjs",
"test": "npm run build && vitest run && cargo test --workspace",
"typecheck": "tsc --noEmit",
"typecheck:examples": "node ./scripts/typecheck-examples.mjs",
"dev": "npm run build && node ./scripts/run-wrangler.mjs dev --config wrangler.jsonc",
"deploy": "npm run build && node ./scripts/run-wrangler.mjs deploy --config wrangler.jsonc",
"deploy:dry-run": "npm run build && node ./scripts/run-wrangler.mjs deploy --dry-run --config wrangler.jsonc",
"types": "node ./scripts/run-wrangler.mjs types --config wrangler.jsonc ./worker-configuration.d.ts",
"types:examples": "node ./scripts/generate-example-types.mjs"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.20.3",
"typescript": "^6.0.2",
"vitest": "^4.1.0",
"wrangler": "^4.73.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.59.0"
}
}