canofold 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "canofold",
3
+ "version": "0.2.0",
4
+ "description": "A static-first, minimally invasive knowledge and documentation platform for Markdown, MDX, search, and AI-ready output.",
5
+ "license": "MIT",
6
+ "author": "Canofold Contributors",
7
+ "homepage": "https://canofold.dev",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/canofold/canofold.git",
11
+ "directory": "packages/canofold"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/canofold/canofold/issues"
15
+ },
16
+ "keywords": [
17
+ "docs",
18
+ "documentation",
19
+ "static-site",
20
+ "cli",
21
+ "mdx",
22
+ "markdown",
23
+ "ai",
24
+ "multilingual"
25
+ ],
26
+ "type": "module",
27
+ "bin": {
28
+ "canofold": "./dist/cli.js"
29
+ },
30
+ "types": "./dist/index.d.ts",
31
+ "exports": {
32
+ ".": {
33
+ "types": "./dist/index.d.ts",
34
+ "import": "./dist/index.js"
35
+ }
36
+ },
37
+ "files": [
38
+ "dist/**/*.js",
39
+ "dist/**/*.d.ts",
40
+ "dist/**/*.css",
41
+ "README.zh-CN.md"
42
+ ],
43
+ "engines": {
44
+ "node": ">=22"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public",
48
+ "provenance": true
49
+ },
50
+ "dependencies": {
51
+ "chokidar": "^5.0.0",
52
+ "esbuild": "^0.28.2",
53
+ "gray-matter": "^4.0.3",
54
+ "lucide-react": "^1.34.0",
55
+ "react": "^19.2.8",
56
+ "react-dom": "^19.2.8",
57
+ "semver": "^7.8.5",
58
+ "zod": "^4.4.3",
59
+ "@canofold/markdown": "0.2.0"
60
+ },
61
+ "devDependencies": {
62
+ "@types/react": "^19.2.18",
63
+ "@types/react-dom": "^19.2.5",
64
+ "@types/semver": "^7.8.0",
65
+ "tsup": "^8.3.5",
66
+ "typescript": "^6.0.3"
67
+ },
68
+ "scripts": {
69
+ "build": "tsup && node -e \"require('node:fs').copyFileSync('src/render/styles.input.css','dist/styles.input.css')\"",
70
+ "typecheck": "tsc --noEmit",
71
+ "test": "pnpm --dir ../.. build && vitest run --root ../.."
72
+ }
73
+ }