@lizardbyte/contribkit 2025.315.185528
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +231 -0
- package/bin/contribkit.mjs +2 -0
- package/dist/chunks/index.mjs +190 -0
- package/dist/chunks/index2.mjs +590 -0
- package/dist/chunks/index3.mjs +4905 -0
- package/dist/cli.d.mts +2 -0
- package/dist/cli.mjs +399 -0
- package/dist/index.d.mts +494 -0
- package/dist/index.mjs +9 -0
- package/dist/shared/contribkit.QISHqB4U.mjs +1453 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lizardbyte/contribkit",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/LizardByte/contribkit.git"
|
|
7
|
+
},
|
|
8
|
+
"version": "2025.315.185528",
|
|
9
|
+
"description": "Toolkit for generating contributor images",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"funding": "https://app.lizardbyte.dev",
|
|
12
|
+
"homepage": "https://github.com/LizardByte/contribkit#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/LizardByte/contribkit/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"contributors",
|
|
18
|
+
"sponsors",
|
|
19
|
+
"github-sponsors"
|
|
20
|
+
],
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./dist/index.mjs",
|
|
24
|
+
"./package.json": "./package.json"
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.mjs",
|
|
27
|
+
"module": "./dist/index.mjs",
|
|
28
|
+
"types": "./dist/index.d.mts",
|
|
29
|
+
"bin": {
|
|
30
|
+
"contribkit": "./bin/contribkit.mjs"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"bin",
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "unbuild",
|
|
38
|
+
"stub": "unbuild --stub",
|
|
39
|
+
"dev": "esno src/cli.ts",
|
|
40
|
+
"test": "npm-run-all test:unit test:report test:lint",
|
|
41
|
+
"test:unit": "jest --coverage",
|
|
42
|
+
"test:report": "jest --reporters=jest-junit",
|
|
43
|
+
"test:lint": "eslint .",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"prepublishOnly": "nr build",
|
|
46
|
+
"release": "bumpp && pnpm publish"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"ansis": "^3.17.0",
|
|
50
|
+
"cac": "^6.7.14",
|
|
51
|
+
"consola": "^3.4.0",
|
|
52
|
+
"dotenv": "^16.4.7",
|
|
53
|
+
"ofetch": "^1.4.1",
|
|
54
|
+
"sharp": "^0.33.5",
|
|
55
|
+
"unconfig": "^7.3.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@antfu/ni": "^23.3.1",
|
|
59
|
+
"@antfu/utils": "^9.1.0",
|
|
60
|
+
"@babel/core": "7.26.9",
|
|
61
|
+
"@babel/preset-env": "7.26.9",
|
|
62
|
+
"@codecov/webpack-plugin": "1.9.0",
|
|
63
|
+
"@fast-csv/parse": "^5.0.2",
|
|
64
|
+
"@types/d3-hierarchy": "^3.1.7",
|
|
65
|
+
"@types/node": "^22.13.10",
|
|
66
|
+
"bumpp": "^10.0.3",
|
|
67
|
+
"d3-hierarchy": "^3.1.2",
|
|
68
|
+
"eslint": "^9.22.0",
|
|
69
|
+
"eslint-plugin-jest": "28.11.0",
|
|
70
|
+
"globals": "16.0.0",
|
|
71
|
+
"jest": "29.7.0",
|
|
72
|
+
"jest-environment-jsdom": "29.7.0",
|
|
73
|
+
"jest-junit": "16.0.0",
|
|
74
|
+
"jiti": "^2.4.2",
|
|
75
|
+
"normalize-url": "^8.0.1",
|
|
76
|
+
"npm-run-all": "4.1.5",
|
|
77
|
+
"p-limit": "^6.2.0",
|
|
78
|
+
"tsx": "^4.19.3",
|
|
79
|
+
"typescript": "^5.8.2",
|
|
80
|
+
"unbuild": "^3.5.0"
|
|
81
|
+
},
|
|
82
|
+
"jest": {
|
|
83
|
+
"collectCoverageFrom": [
|
|
84
|
+
"src/**/*.{js,jsx}"
|
|
85
|
+
],
|
|
86
|
+
"testEnvironment": "jsdom"
|
|
87
|
+
},
|
|
88
|
+
"resolutions": {
|
|
89
|
+
"contribkit": "workspace:*"
|
|
90
|
+
}
|
|
91
|
+
}
|