-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.99 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
75
76
77
78
79
80
81
82
{
"name": "contributorkit",
"type": "module",
"version": "0.0.4",
"packageManager": "pnpm@9.12.3",
"description": "Toolkit for generating contributors images",
"author": "Hung <giahung197bg@gmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/hunghg255",
"homepage": "https://github.com/hunghg255/contributorkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/contributorkit.git"
},
"bugs": {
"url": "https://github.com/hunghg255/contributorkit/issues"
},
"keywords": [
"contribution",
"github-contribution"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"contributorkit": "./bin/contributorkit.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"dev": "esno src/cli.ts",
"test": "esno test.ts",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish"
},
"dependencies": {
"@octokit/core": "^6.1.2",
"consola": "^3.2.3",
"d3-hierarchy": "^3.1.2",
"dotenv": "^16.4.5",
"node-html-parser": "^6.1.13",
"normalize-url": "^8.0.1",
"ofetch": "^1.4.1",
"p-limit": "^5.0.0",
"picocolors": "^1.1.1",
"sharp": "^0.33.5",
"unconfig": "^0.3.13",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.10",
"@types/d3-hierarchy": "^3.1.7",
"@types/node": "^20.17.6",
"@types/yargs": "^17.0.33",
"bumpp": "^9.8.1",
"eslint": "^9.14.0",
"esno": "^4.8.0",
"jiti": "^1.21.6",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.10",
"vitest": "^1.6.0"
},
"resolutions": {
"contributorkit": "workspace:*"
}
}