-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "@cogita/core",
"version": "0.1.0",
"description": "The intelligent core engine that orchestrates Cogita's theme-driven architecture.",
"keywords": [
"cogita",
"core",
"static-site-generator",
"blog",
"rspress",
"theme-driven",
"typescript",
"markdown"
],
"author": "wu9o <https://github.com/wu9o>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wu9o/cogita.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/wu9o/cogita/issues"
},
"homepage": "https://github.com/wu9o/cogita/tree/main/packages/core#readme",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js"
}
},
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"files": ["dist", "README.md", "README.zh-CN.md", "LICENSE"],
"engines": {
"node": ">=18.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wu9o"
},
"scripts": {
"build": "rslib build",
"dev": "rslib build -w"
},
"devDependencies": {
"@rslib/core": "0.11.2",
"rsbuild-plugin-publint": "^0.3.3",
"typescript": "^5.0.4"
},
"dependencies": {
"@rspress/core": "^1.45.1",
"find-up": "^7.0.0",
"jiti": "^2.5.1",
"mlly": "^1.7.4",
"@cogita/theme-lucid": "workspace:*",
"@cogita/shared": "workspace:*"
}
}