-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 1.85 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
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
{
"name": "@toruslabs/http-helpers",
"version": "7.0.0",
"description": "http helpers",
"sideEffects": false,
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/httpHelpers.umd.min.js",
"jsdelivr": "dist/httpHelpers.umd.min.js",
"types": "dist/types/index.d.ts",
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint": "eslint --fix 'src/**/*.ts'",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "^7.x",
"@sentry/types": "^8.x"
},
"peerDependenciesMeta": {
"@sentry/types": {
"optional": true
}
},
"dependencies": {
"deepmerge": "^4.3.1",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@sentry/node": "^8.35.0",
"@sentry/types": "^8.35.0",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.5",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"vitest": "^2.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/http-helpers.git"
},
"keywords": [
"torus"
],
"author": "Torus Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/torusresearch/http-helpers/issues"
},
"homepage": "https://github.com/torusresearch/http-helpers#readme",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}