-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.56 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
{
"name": "@rodbe/github-api",
"version": "2.4.0",
"description": "Typed and customizable wrapper for the GitHub API",
"keywords": [
"front-end",
"RBX",
"typescript"
],
"homepage": "https://github.com/rodbe-io/github-api",
"bugs": {
"url": "https://github.com/rodbe-io/github-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodbe-io/github-api.git"
},
"license": "MIT",
"author": "KevinRodbe",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm run type-check",
"build": "pkgroll",
"commit": "git-cz",
"commitlint": "commitlint --edit",
"prepare": "husky || true",
"release": "semantic-release",
"start": "pkgroll --watch",
"test:unit": "vitest run",
"type-check": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@rodbe/fn-utils": "^1.13.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@commitlint/format": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.10.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.3",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.20.0",
"@vitest/coverage-v8": "^2.1.9",
"commitizen": "^4.3.2",
"conventional-changelog-conventionalcommits": "9.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-package-json": "^0.19.0",
"eslint-plugin-prettier": "^5.5.6",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"pkgroll": "^2.27.1",
"prettier": "^3.9.4",
"semantic-release": "25.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.1",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.5.2",
"engines": {
"node": ">= 25.2.1",
"npm": ">= 8.11.0",
"pnpm": ">= 10.5.2"
},
"volta": {
"node": "25.2.1",
"pnpm": "10.5.2"
},
"publishConfig": {
"access": "public"
},
"enginesStrict": true,
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"@eslint/plugin-kit@<0.3.4": ">=0.3.4",
"vitest@<3.2.6": ">=3.2.6",
"vite@<=6.4.2": ">=6.4.3"
}
}
}