This repository was archived by the owner on Dec 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "@brainylab/fetch-wrapper",
"version": "0.7.3",
"keywords": [
"fetch",
"wrapper",
"http"
],
"repository": {
"type": "git",
"url": "https://github.com/brainylab/fetch-wrapper"
},
"license": "MIT",
"author": {
"name": "André Felipe Schulle",
"email": "dev@brainylab.com.br"
},
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"scripts": {
"build": "pnpm run build:compile && pnpm run build:packages",
"build:compile": "tsup ./src/index.ts --dts --format esm,cjs --env.NODE_ENV production",
"build:packages": "tsx ./scripts/create-package.ts",
"commit": "pnpm commit:add && pnpm commit:create && pnpm commit:push",
"commit:add": "git add .",
"commit:create": "cz",
"commit:push": "git push",
"test": "vitest run",
"test:coverage": "vitest run --coverage && open ./coverage/index.html",
"test:watch": "vitest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@brainylab/prettier-config",
"devDependencies": {
"@brainylab/eslint-config": "2.5.6",
"@brainylab/prettier-config": "0.2.4",
"@commitlint/config-conventional": "^18.6.0",
"@evilmartians/lefthook": "^1.6.1",
"@types/node": "^20.11.16",
"@vitest/coverage-v8": "^1.2.2",
"commitizen": "^4.3.0",
"commitlint": "^18.6.0",
"cz-conventional-changelog": "^3.3.0",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"engines": {
"node": ">= 18"
}
}