-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.44 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "secure-pastebin",
"version": "1.0.1",
"description": "A production-ready, secure pastebin built on Cloudflare Workers with one-time view capability, comprehensive analytics, and a beautiful modern UI. Live at https://1paste.dev",
"main": "dist/worker.js",
"homepage": "https://1paste.dev",
"repository": {
"type": "git",
"url": "https://github.com/YOUR_USERNAME/YOUR_REPO_NAME.git"
},
"bugs": {
"url": "https://github.com/YOUR_USERNAME/YOUR_REPO_NAME/issues"
},
"scripts": {
"build": "tsc && wrangler deploy --dry-run",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"type-check": "tsc --noEmit",
"start": "wrangler dev",
"preview": "wrangler dev --local",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"clean": "rm -rf dist",
"validate": "npm run type-check && npm run lint && npm run format:check"
},
"keywords": [
"pastebin",
"paste-sharing",
"cloudflare-workers",
"typescript",
"security",
"one-time-view",
"edge-computing",
"serverless",
"kv-storage",
"progressive-enhancement",
"zero-dependencies",
"analytics",
"rate-limiting",
"xss-protection",
"auto-expiration",
"mobile-friendly",
"api-first",
"open-source",
"privacy-focused",
"secure-sharing",
"code-sharing",
"developer-tools",
"web-app",
"modern-ui",
"responsive-design"
],
"author": {
"name": "Your Name",
"email": "your.email@example.com",
"url": "https://github.com/YOUR_USERNAME"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"src/",
"dist/",
"wrangler.toml",
"tsconfig.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20231218.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4",
"wrangler": "^3.20.0"
},
"dependencies": {},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/YOUR_USERNAME"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}