-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 KB
/
package.json
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
{
"name": "gumcast-client",
"description": "Web app frontend for Gumcast.com",
"version": "0.0.0",
"type": "module",
"private": true,
"bugs": {
"url": "https://github.com/gumcast/gumcast-client/issues"
},
"devDependencies": {
"@voxpelli/tsconfig": "^15.0.0",
"auto-changelog": "^2.3.0",
"gh-release": "^7.0.0",
"npm-run-all": "^4.1.5",
"neostandard": "^0.11.8",
"top-bun": "^10.1.1",
"typescript": "~5.6.2"
},
"homepage": "https://github.com/gumcast/gumcast-client",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gumcast/gumcast-client.git"
},
"scripts": {
"prepublishOnly": "git push --follow-tags && gh-release",
"test": "run-s test:*",
"test:lint": "eslint",
"start": "run-s watch",
"version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"build": "npm run clean && run-p build:*",
"build:top-bun": "tb",
"watch": "npm run clean && run-p watch:*",
"watch:top-bun": "npm run build:top-bun -- --watch",
"clean": "rm -rf public && mkdir -p public"
},
"dependencies": {
"classnames": "^2.3.2",
"fetch-undici": "^5.0.0",
"jsonfeed-to-atom": "^1.2.4",
"local-storage-proxy": "^4.0.2",
"mine.css": "^10.0.0",
"p-map": "^7.0.2",
"uhtml-isomorphic": "^2.0.0",
"xmlbuilder": "^15.1.1"
}
}