-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 953 Bytes
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
{
"name": "xv",
"type": "module",
"version": "0.4.3",
"private": true,
"description": "xkcd.com viewer app, done in pure JavaScript and CSS",
"keywords": [
"xkcd",
"comics",
"viewer",
"vanilla-js"
],
"homepage": "https://github.com/icmx/xv#readme",
"bugs": {
"url": "https://github.com/icmx/xv/issues"
},
"license": "MIT",
"author": "icmx",
"repository": {
"type": "git",
"url": "git+https://github.com/icmx/xv.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format:check": "prettier --check {src,vite}/**/*.{css,js}",
"format": "prettier --write {src,vite}/**/*.{css,js}",
"lint:check": "eslint .",
"lint": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.10.0",
"prettier": "^3.9.6",
"vite": "^7.3.1"
}
}