forked from antfu-collective/sponsorkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.85 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
{
"name": "sponsorkit",
"type": "module",
"version": "0.13.0",
"packageManager": "pnpm@9.1.0",
"description": "Toolkit for generating sponsors images",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/sponsorkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/sponsorkit.git"
},
"bugs": {
"url": "https://github.com/antfu/sponsorkit/issues"
},
"keywords": [
"sponsors",
"github-sponsors"
],
"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": {
"sponsorkit": "./bin/sponsorkit.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"dev": "esno src/cli.ts",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish"
},
"dependencies": {
"consola": "^3.2.3",
"d3-hierarchy": "^3.1.2",
"dotenv": "^16.4.5",
"node-html-parser": "^6.1.13",
"ofetch": "^1.3.4",
"p-limit": "^5.0.0",
"picocolors": "^1.0.0",
"sharp": "^0.33.3",
"unconfig": "^0.3.13",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@types/d3-hierarchy": "^3.1.7",
"@types/node": "^20.12.10",
"@types/yargs": "^17.0.32",
"bumpp": "^9.4.1",
"eslint": "^9.2.0",
"esno": "^4.7.0",
"jiti": "^1.21.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"resolutions": {
"sponsorkit": "workspace:*"
}
}