-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
{
"name": "@brainylab/fwrp",
"version": "1.0.11",
"keywords": [
"fetch",
"wrapper",
"http",
"request",
"fwrp"
],
"repository": {
"type": "git",
"url": "https://github.com/brainylab/fwrp"
},
"license": "MIT",
"author": {
"name": "André Felipe Schulle",
"email": "[email protected]"
},
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "tsup ./src/index.ts --dts --format esm,cjs --env.NODE_ENV production",
"changeset": "changeset",
"commit": "pnpm commit:add && pnpm commit:create && pnpm commit:push",
"commit:add": "git add .",
"commit:create": "cz",
"commit:push": "git push",
"format:check": "prettier --check ./src --cache",
"lint": "eslint ./src/*.ts",
"prepack": "clean-package",
"postpack": "clean-package restore",
"release": "changeset publish",
"test": "vitest run",
"test:coverage": "vitest run --coverage && open ./coverage/index.html",
"test:watch": "vitest",
"version": "changeset version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@brainylab/eslint-config-typescript": "3.2.1",
"@brainylab/prettier-config": "1.1.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@changesets/get-release-plan": "4.0.5",
"@changesets/types": "6.0.0",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"clean-package": "2.2.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"engines": {
"node": ">= 18"
},
"clean-package": "./clean-package.config.json"
}