-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.36 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@breimerct/brex",
"version": "1.5.1",
"description": "",
"keywords": [
"http",
"js",
"ts",
"typescript",
"javascript",
"fetch",
"request"
],
"license": "MIT",
"author": "Breimer Correa <breimerct@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/breimerct/brex.git"
},
"homepage": "https://github.com/breimerct/brex#readme",
"bugs": {
"url": "https://github.com/breimerct/brex/issues"
},
"publishConfig": {
"@Breimerct:registry": "https://npm.pkg.github.com"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:tsup": "tsup",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:watch": "oxlint --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check",
"check:fix": "npm run lint:fix && npm run format",
"pre-commit": "npm run format && npm run lint:fix && npm run check",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=verbose"
},
"typesVersions": {
"*": {
"dist/index.cjs": [
"dist/index.d.cts"
]
}
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"devDependencies": {
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^24.0.1",
"@vitest/coverage-v8": "^3.2.3",
"@vitest/ui": "^3.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.1",
"nodemon": "^3.1.10",
"oxlint": "^1.1.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"oxlint --fix",
"oxlint"
],
"*.{json,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}