-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.01 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
{
"name": "safetch",
"private": false,
"version": "1.1.1",
"license": "MIT",
"author": "Yurii Rybak",
"description": "Type-Safe Fetch & URL API",
"homepage": "https://github.com/Yurchishin/safetch",
"repository": {
"type": "git",
"url": "https://github.com/Yurchishin/safetch.git"
},
"keywords": [
"fetch",
"typesafe"
],
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"LICENSE"
],
"type": "module",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "bun run scripts/build-command.ts",
"build:watch": "bun run scripts/build-watch-command.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "bun run type-check -- --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint . --ext .js,.cjs,.mjs,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.jsx,.ts,.tsx --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"release": "release-it --ci --config .release-it.cjs",
"fix": "bun run lint:fix && bun run format:fix",
"commit": "bun run fix && commit",
"prepare": "husky install"
},
"devDependencies": {
"@anylint/commitlint-config": "1.0.7",
"@anylint/eslint-config": "1.0.7",
"@anylint/prettier-config": "1.0.7",
"@commitlint/cli": "17.7.1",
"@commitlint/prompt-cli": "17.7.1",
"@esfx/type-model": "1.0.0",
"@release-it/conventional-changelog": "7.0.2",
"@types/qs": "6.9.8",
"bun-plugin-dts": "0.2.1",
"bun-types": "latest",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "8.50.0",
"husky": "8.0.3",
"prettier": "3.0.3",
"qs": "6.11.2",
"release-it": "16.2.0",
"type-fest": "4.3.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"qs": "6.11.2"
},
"prettier": "@anylint/prettier-config",
"publishConfig": {
"access": "public",
"@anylint:registry": "https://registry.npmjs.org"
}
}