forked from AsPulse/TypedHttpAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 986 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 986 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "typed-http-api",
"version": "2.2.0",
"main": "./server/index.js",
"types": "./server/index.d.ts",
"files": [
"./server",
"./client"
],
"description": "TypeScript type system compliant communication via HTTP.",
"keywords": [
"http",
"json",
"ajax",
"xmlhttprequest",
"io-ts",
"type",
"api"
],
"license": "MIT",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@types/node": "^24.10.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.29.0",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.15.18",
"eslint": "^8.18.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"better-object-constructor": "^1.0.0",
"runtypes": "^7.0.4"
},
"scripts": {
"lint": "eslint {src, __tests__}/**/*.ts --fix",
"build": "tsx build.ts",
"type-check": "tsc --noEmit",
"test": "tsx --test __tests__/**/*.test.ts"
}
}