-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "@valtown/deno-http-worker",
"version": "0.0.18",
"description": "Securely spawn Deno workers from Node.js",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && npm run lint:deno-bootstrap && npm run lint:deno-test-files",
"lint:deno-bootstrap": "cd deno-bootstrap && deno lint",
"lint:deno-test-files": "cd src/test && deno lint",
"build": "tsc --build",
"prepare": "npm run lint && npm run build"
},
"files": [
"dist",
"deno-bootstrap"
],
"repository": {
"type": "git",
"url": "git+https://github.com/val-town/deno-http-worker.git"
},
"type": "module",
"engines": {
"node": "20 || 22"
},
"author": "Val Town",
"license": "MIT",
"bugs": {
"url": "https://github.com/val-town/deno-http-worker/issues"
},
"homepage": "https://github.com/val-town/deno-http-worker#readme",
"devDependencies": {
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"eslint-plugin-import": "^2.29.1",
"@types/eslint": "^8.44.4",
"typescript": "^5.4.5",
"vitest": "^2"
}
}