-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
36
37
38
39
40
41
42
43
{
"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"
],
"repository": "https://github.com/AsPulse/TypedHttpAPI.git",
"author": "aspulse <aspulse.x@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.29.0",
"dts-bundle-generator": "^6.12.0",
"esbuild": "^0.15.0",
"eslint": "^8.18.0",
"fastify": "^4.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"better-object-constructor": "^1.0.0",
"runtypes": "^6.6.0"
},
"scripts": {
"lint": "eslint src/**/*.ts --fix",
"build": "ts-node build.ts",
"prepublishOnly": "npm run build"
}
}