-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 904 Bytes
/
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
{
"name": "fast-client",
"version": "1.0.2",
"description": "Quickly create a client for an api",
"main": "output/index.cjs.js",
"module": "output/index.esm.js",
"types": "output/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/oMatheuss/fast-client.git"
},
"scripts": {
"clean": "rm -rf output",
"build": "rollup -c",
"publish": "npm publish --access public",
"test": "jest"
},
"keywords": [
"fast",
"client",
"api"
],
"author": "Matheus SM",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"jest": "^29.7.0",
"prettier": "3.1.1",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"files": [
"output"
]
}