forked from ninaTorgunakova/slowreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 673 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 673 Bytes
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": "@slowreader/proxy",
"private": true,
"type": "module",
"engines": {
"node": "^22.5.0",
"pnpm": "^9.0.0"
},
"scripts": {
"start": "tsx watch index.ts",
"test": "FORCE_COLOR=1 pnpm run /^test:/",
"build": "esbuild index.ts --bundle --platform=node --sourcemap --format=esm --outfile=dist/index.mjs",
"production": "node --run build && ./scripts/run-image.sh",
"test:proxy-coverage": "c8 bnt",
"clean:coverage": "rm -rf coverage",
"clean:build": "rm -rf dist/"
},
"dependencies": {
"esbuild": "0.23.0"
},
"devDependencies": {
"better-node-test": "0.5.1",
"c8": "10.1.2",
"tsx": "4.16.2"
}
}