-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 880 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 880 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
{
"name": "@rachelambda/well-rested",
"version": "0.1.3",
"description": "A typescript package for defining well-typed restful APIs",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": ">= 18.0.0",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "tsc -p ./tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rachelambda/well-rested.git"
},
"keywords": [
"typescript",
"REST",
"api",
"typing",
"backend",
"types"
],
"author": "Rachel Lambda Samuelsson",
"license": "ISC",
"bugs": {
"url": "https://github.com/rachelambda/well-rested/issues"
},
"homepage": "https://github.com/rachelambda/well-rested#readme",
"devDependencies": {
"typescript": "^5.5.3",
"typescript-language-server": "^4.3.3"
}
}