forked from antfu-collective/sponsorkit
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.32 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.32 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
{
"name": "@lizardbyte/contribkit",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/contribkit.git"
},
"version": "0.0.0",
"description": "Toolkit for generating contributor images",
"license": "MIT",
"funding": "https://app.lizardbyte.dev",
"homepage": "https://github.com/LizardByte/contribkit#readme",
"bugs": {
"url": "https://github.com/LizardByte/contribkit/issues"
},
"keywords": [
"contributors",
"sponsors",
"github-sponsors"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"contribkit": "bin/contribkit.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"dev": "esno src/cli.ts",
"test": "npm-run-all test:unit test:report test:lint test:typecheck",
"test:unit": "jest --coverage",
"test:report": "jest --reporters=jest-junit",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish"
},
"dependencies": {
"@crowdin/crowdin-api-client": "^1.41.2",
"ansis": "^4.2.0",
"cac": "^6.7.14",
"consola": "^3.4.0",
"dotenv": "^17.3.1",
"ofetch": "^1.4.1",
"sharp": "^0.34.5",
"unconfig": "^7.3.0"
},
"devDependencies": {
"@antfu/ni": "^28.2.0",
"@antfu/utils": "^9.1.0",
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@codecov/webpack-plugin": "1.9.1",
"@eslint/js": "^10.0.1",
"@fast-csv/parse": "^5.0.2",
"@types/d3-hierarchy": "^3.1.7",
"@types/node": "^25.2.3",
"bumpp": "^10.0.3",
"d3-hierarchy": "^3.1.2",
"eslint": "^10.0.0",
"eslint-plugin-jest": "29.15.0",
"globals": "17.4.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-junit": "16.0.0",
"jiti": "^2.4.2",
"normalize-url": "^9.0.0",
"npm-run-all": "4.1.5",
"p-limit": "^7.3.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unbuild": "^3.5.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testEnvironment": "jsdom"
},
"resolutions": {
"contribkit": "workspace:*"
}
}