-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.9 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.9 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
{
"name": "nooxy",
"version": "0.0.0-development",
"description": "Zero dependency Notion reverse proxy for custom domains with seamless in-domain navigation for inner Notion pages, full HTML/CSS/JS customization, multi-instance support, CLI tools, and local development support. Built for Cloudflare Workers and modern Node.js runtimes. Transform your Notion pages into professional websites with complete control over styling, SEO, and functionality - no monthly fees required.",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/draphy/nooxy"
},
"homepage": "https://github.com/draphy/nooxy",
"bugs": {
"url": "https://github.com/draphy/nooxy/issues"
},
"keywords": [
"nooxy",
"notion",
"notion-proxy",
"custom-domain",
"cloudflare-workers",
"cloudflare",
"serverless",
"typescript",
"node",
"cli-tool",
"html-rewriter",
"proxy",
"static-site",
"website-builder",
"seo",
"zero-dependency",
"zero-dependencies",
"lightweight"
],
"author": {
"name": "David Raphi",
"email": "david@draphy.org"
},
"engines": {
"node": ">=18.17.0"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.html",
"dist/**/*.css",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"README.md",
"LICENSE"
],
"bin": "./dist/cli/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"prebuild": "node converter.js && pnpm biome:fix",
"build": "pnpm run prebuild && tsup src/index.ts --format esm --dts-resolve --clean --sourcemap --out-dir dist && pnpm run build:cli",
"build:cli": "tsup src/cli/index.ts --format esm --clean --out-dir dist/cli && cp -r src/cli/templates dist/cli/",
"biome:lint": "biome lint .",
"lint:fix": "biome lint --write .",
"biome:format": "biome format .",
"format:fix": "biome format --write .",
"biome:check": "biome check .",
"biome:fix": "biome check --write .",
"type:check": "tsc --noEmit",
"commit:check": "pnpm biome:check && pnpm type:check && pnpm build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20250823.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^22.18.0",
"semantic-release": "^24.2.7",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad"
}