-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "@stackbox/cms",
"version": "0.1.0",
"description": "Stackbox CMS engine",
"type": "module",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/stackboxcms/cms",
"repository": {
"type": "git",
"url": "git+https://github.com/stackboxcms/cms.git"
},
"files": [
"dist",
"src/plugins"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./plugins/blog": {
"types": "./dist/plugins/blog/index.d.ts",
"import": "./dist/plugins/blog/index.js"
},
"./plugins/random-quote": {
"types": "./dist/plugins/random-quote/index.d.ts",
"import": "./dist/plugins/random-quote/index.js"
},
"./plugins/sitemap": {
"types": "./dist/plugins/sitemap/index.d.ts",
"import": "./dist/plugins/sitemap/index.js"
},
"./link": {
"types": "./dist/link.d.ts",
"import": "./dist/link.js"
},
"./build": {
"types": "./dist/build.d.ts",
"import": "./dist/build.js"
}
},
"bin": {
"stackbox-cms": "./dist/cli.js"
},
"scripts": {
"build": "node scripts/emit-dist.mjs && node scripts/copy-plugin-assets.mjs && node scripts/generate-agents-md.mjs",
"test": "npm run build && node --import tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"prepack": "npm run build"
},
"dependencies": {
"@hyperspan/html": "^1.0.3",
"marked": "^15.0.12",
"tsx": "^4.19.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.15.21",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}