-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.75 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
{
"name": "github-profile-crt",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Generate CRT-style GitHub contribution SVGs for profile README files.",
"license": "MIT",
"homepage": "https://github.com/stefashkaa/github-profile-crt#readme",
"repository": {
"type": "git",
"url": "https://github.com/stefashkaa/github-profile-crt.git"
},
"bugs": {
"url": "https://github.com/stefashkaa/github-profile-crt/issues"
},
"keywords": [
"github",
"github-profile",
"svg",
"contributions",
"readme",
"crt",
"themes",
"automation"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "vite build",
"build:action": "tsx scripts/build-action.mts",
"build:all": "pnpm build && pnpm build:action",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"generate": "pnpm build && node dist/cli.js",
"generate:dev": "tsx src/cli.ts",
"generate:raw": "CRT_MINIFY_SVG=false tsx src/cli.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"dotenv": "^17.4.2",
"svgo": "^4.0.1"
},
"devDependencies": {
"@actions/core": "^3.0.1",
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"@vercel/ncc": "^0.44.0",
"eslint": "^10.5.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.0.16"
}
}