-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
{
"name": "unconventional",
"version": "1.14.1",
"description": "A complete server built on Cloudflare Workers/Pages",
"keywords": [
"cloudflare",
"pages",
"functions",
"workers",
"edge",
"server",
"express",
"crud",
"rest",
"api"
],
"author": "Dean Mauro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare-extension/unconventional.git"
},
"bugs": {
"url": "https://github.com/cloudflare-extension/unconventional/issues"
},
"homepage": "https://github.com/cloudflare-extension/unconventional#readme",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "tsc --build --clean",
"build": "rm -rf dist && tsc --build",
"watch": "tsc --watch",
"lint": "eslint . --ext js,jsx,ts,tsx",
"format": "eslint . --ext js,jsx,ts,tsx --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:serve": "vitepress serve docs",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch"
},
"peerDependencies": {
"hono": "^4",
"unconventional-pg-queries": "^1.1.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231121.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"hono": "^4",
"typescript": "^5.3.3",
"unconventional-pg-queries": "^1.0.0"
}
}