-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
{
"name": "@tobshub/tobspress",
"version": "3.1.2",
"description": "Nodejs HTTP Client for building REST APIs",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"author": "Tobshub",
"license": "MIT",
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"npm-pub": "pnpm build && npm publish",
"example": "cd ./example && pnpm start",
"test": "node ./tests/test.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@types/node": "^18.15.11",
"esbuild": "^0.17.15",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"repository": {
"url": "https://github.com/Tobshub/tobspress"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dist/*": "./dist/*"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"keywords": [
"http",
"api",
"express"
],
"files": [
"./dist/*"
]
}