mirror of
https://github.com/p-stream/simple-proxy.git
synced 2026-01-11 20:10:35 +00:00
Some checks failed
Linting and Testing / Run Linters (push) Has been cancelled
Linting and Testing / Build project (push) Has been cancelled
Linting and Testing / Build docker (push) Has been cancelled
Docker Publish / build (push) Has been cancelled
Release / Release (push) Has been cancelled
Changed caching logic to use ENABLE_CACHE (disabled by default) instead of DISABLE_CACHE. Updated documentation and bumped version to 2.2.4 for clarity and consistency.
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "simple-proxy",
|
|
"private": true,
|
|
"version": "2.2.4",
|
|
"scripts": {
|
|
"prepare": "nitropack prepare",
|
|
"dev": "nitropack dev",
|
|
"build": "nitropack build",
|
|
"build:cloudflare": "NITRO_PRESET=cloudflare npm run build",
|
|
"build:aws": "NITRO_PRESET=aws_lambda npm run build",
|
|
"build:node": "NITRO_PRESET=node-server npm run build",
|
|
"build:netlify": "NITRO_PRESET=netlify_edge npm run build",
|
|
"start": "node .output/server/index.mjs",
|
|
"lint": "eslint --ext .ts src/",
|
|
"lint:fix": "eslint --fix --ext .ts src/",
|
|
"preinstall": "npx only-allow pnpm"
|
|
},
|
|
"dependencies": {
|
|
"h3": "^1.15.1",
|
|
"jose": "^5.10.0",
|
|
"nitropack": "^2.11.9"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/wasm-node": "^4.40.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-import-resolver-typescript": "^3.10.0",
|
|
"eslint-plugin-prettier": "^5.2.6"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"rollup": "npm:@rollup/wasm-node"
|
|
}
|
|
}
|
|
}
|