-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "@rocktimsaikia/github-card",
"version": "3.0.4",
"description": "A minimal github card widget for your portfolio.",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "biome check .",
"format": "biome check --write .",
"build": "esbuild src/index.js --bundle --minify --format=esm --outfile=dist/index.js",
"build-watch": "npm run build -- --watch",
"prebuild": "npm run lint",
"prepublishOnly": "npm run lint && npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocktimsaikia/github-card.git"
},
"keywords": [
"github",
"card",
"profile",
"embedded"
],
"author": {
"name": "Rocktim Saikia",
"email": "rocktimthedev@gmail.com",
"url": "https://rocktimcodes.site"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rocktimsaikia/github-card/issues"
},
"homepage": "https://github.com/rocktimsaikia/github-card#readme",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"esbuild": "0.28.0"
}
}