-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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": "npm-userscript",
"private": true,
"version": "0.4.0",
"author": "Bjorn Lu",
"license": "MIT",
"description": "Various improvements and fixes for npmjs.com",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bluwy/npm-userscript.git"
},
"bugs": {
"url": "https://github.com/bluwy/npm-userscript/issues"
},
"scripts": {
"dev": "node ./scripts/cli.ts dev",
"build": "node ./scripts/cli.ts build",
"worker:dev": "wrangler dev",
"worker:deploy": "wrangler deploy",
"worker:typegen": "wrangler types worker/worker-configuration.d.ts",
"typecheck": "tsc -b",
"format": "prettier --write \"**/*.ts\"",
"update-readme": "node ./scripts/update-readme.ts"
},
"packageManager": "[email protected]",
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"ae-cvss-calculator": "^1.0.12",
"get-npm-tarball-url": "^2.1.0",
"semver": "^7.7.4",
"uhtml": "^5.0.9"
},
"devDependencies": {
"@bluwy/usb": "^0.2.0",
"@types/greasemonkey": "^4.0.7",
"@types/node": "^25.5.2",
"@types/semver": "^7.7.1",
"module-replacements": "^2.11.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"wrangler": "^4.81.0"
}
}