-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.02 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.02 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
76
77
78
79
80
81
{
"name": "dedpaste",
"version": "1.24.4",
"description": "CLI pastebin application using Cloudflare Workers and R2",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" mocha test/**/*.test.js",
"dev": "wrangler dev",
"deploy": "npm run build && wrangler deploy",
"build": "tsc && tsc -p tsconfig.cli.json",
"format": "prettier --write 'src/**/*.{js,ts}'",
"lint": "eslint --ext .js,.ts src/",
"postinstall": "chmod +x ./cli/index.js",
"prepublishOnly": "npm run build",
"version": "git add -A ."
},
"bin": {
"dedpaste": "./cli/index.js"
},
"files": [
"dist",
"cli",
"src/types",
"completion",
"public",
"README.md"
],
"keywords": [
"pastebin",
"cli",
"cloudflare",
"r2"
],
"author": "Cameron Banowsky",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/anoncam/dedpaste.git"
},
"bugs": {
"url": "https://github.com/anoncam/dedpaste/issues"
},
"homepage": "https://github.com/anoncam/dedpaste#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250303.0",
"@types/inquirer": "^9.0.9",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.13.10",
"chai": "^6.2.2",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"mocha": "^11.7.5",
"typescript": "^5.8.2",
"wrangler": "^4.60.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.1",
"@types/highlight.js": "^9.12.4",
"@types/marked": "^5.0.2",
"clipboardy": "^4.0.0",
"commander": "^13.1.0",
"eslint": "^9.34.0",
"highlight.js": "^11.11.1",
"inquirer": "^12.9.4",
"keybase-api": "^0.0.1",
"marked": "^16.2.0",
"mime-types": "^2.1.35",
"mixpanel": "^0.18.1",
"node-fetch": "^3.3.2",
"openpgp": "^6.2.2",
"prettier": "^3.6.2",
"uuid": "^13.0.0"
}
}