-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "vanilla-js-github-calendar",
"version": "1.1.5",
"description": "Lightweight Web Component to render GitHub contributions calendar in vanilla JS",
"author": "moonhuntercode",
"license": "MIT",
"homepage": "https://github.com/moonhuntercode/vanilla-js-github-calendar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/moonhuntercode/vanilla-js-github-calendar.git"
},
"keywords": [
"github",
"calendar",
"contributions",
"webcomponent",
"vanilla-js"
],
"exports": {
".": "./dist/vanilla-js-github-calendar.js",
"./styles.css": "./dist/vanilla-js-github-calendar.css"
},
"main": "./dist/vanilla-js-github-calendar.js",
"type": "module",
"types": "./src/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:docs": "vite build -c vite.docs.config.js",
"preview": "vite preview -c vite.docs.config.js",
"test": "vitest",
"format": "prettier --write .",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"prettier": "^3.0.0",
"vite": "^8.1.1",
"vitest": "^4.1.9"
},
"files": [
"dist"
],
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}