-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.32 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "make-api-request-js",
"version": "0.2.1",
"description": "Modern TypeScript HTTP client for browser and Node.js environments",
"keywords": [
"http",
"api",
"client",
"typescript",
"fetch",
"request"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sideko-Inc/make-request-js.git"
},
"bugs": {
"url": "https://github.com/Sideko-Inc/make-request-js/issues"
},
"homepage": "https://github.com/Sideko-Inc/make-request-js#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"dev": "npm run build:watch",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"ci-checks": "pnpm lint && pnpm typecheck && pnpm test:coverage",
"prepare": "pnpm build",
"prepublishOnly": "pnpm run ci-checks",
"release": "pnpm publish",
"version": "echo \"Use './release.sh patch|minor|major' to release\"",
"check": "pnpm lint && pnpm typecheck"
},
"dependencies": {
"form-data": "^4.0.0",
"form-urlencoded": "^6.1.5",
"js-base64": "^3.7.7",
"jsonpointer": "^5.0.1",
"node-fetch": "^2.7.0",
"qs": "^6.12.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.9",
"@types/qs": "^6.9.8",
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.18.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
}
}