-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "make-service",
"version": "3.1.0",
"description": "Some utilities to extend the 'fetch' API to better interact with external APIs.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "Gustavo Guichard <@gugaguichard>",
"license": "MIT",
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"dev": "tsup ./src/index.ts --format esm,cjs --watch --dts",
"lint": "eslint --config eslint.config.mjs .",
"tsc": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"jsdom": "^24.1.1",
"prettier": "latest",
"string-ts": "^2.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "latest",
"zod": "latest"
},
"files": [
"README.md",
"./dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gustavoguichard/make-service.git"
},
"bugs": {
"url": "https://github.com/gustavoguichard/make-service/issues"
}
}