-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.47 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
{
"name": "elden-ring-github",
"version": "2.0.2",
"description": "When a pull request is forged or a merge fulfilled, a grand banner rises in the style of Elden Ring — transmuting mere milestones of development into moments of legend.",
"main": "dist/content.js",
"scripts": {
"build": "TSDOWN_TARGET=content tsdown && TSDOWN_TARGET=popup tsdown && npm run copy-static",
"dev": "concurrently -k -n content,popup \"TSDOWN_TARGET=content tsdown --watch\" \"TSDOWN_TARGET=popup tsdown --watch\"",
"clean": "rm -rf dist",
"copy-static": "cp manifest.json dist/ && cp -r src/popup/*.html src/popup/*.css dist/popup/ && mkdir -p dist/content && cp src/content/styles.css dist/content/ && cp src/content/content-loader.js dist/ && cp -r src/assets dist/",
"lint": "oxlint src/",
"lint:fix": "oxlint src/ --fix",
"format": "oxfmt src/",
"format:check": "oxfmt --check src/",
"prebuild": "npm run clean && mkdir -p dist/popup",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepare": "husky",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [
"chrome-extension",
"github",
"elden-ring",
"pull-request",
"merge",
"banner"
],
"author": "leochiu",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@testing-library/jest-dom": "^6.8.0",
"@types/chrome": "^0.0.268",
"@types/node": "^22.5.0",
"@vitest/ui": "^3.2.4",
"concurrently": "^10.0.3",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.1.6",
"oxfmt": "^0.59.0",
"oxlint": "^0.9.0",
"preact": "^10.29.7",
"tsdown": "^0.2.13",
"typescript": "^5.5.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leochiu-a/elden-ring-github.git"
},
"bugs": {
"url": "https://github.com/leochiu-a/elden-ring-github/issues"
},
"homepage": "https://github.com/leochiu-a/elden-ring-github#readme",
"lint-staged": {
"*.{ts,js}": [
"oxlint --fix",
"oxfmt"
],
"*.{html,css,json,md}": [
"oxfmt"
]
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}