-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.1 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
{
"name": "chronicle",
"dependencies": {
"std-env": "^4.0.0"
},
"engines": {
"node": ">=22"
},
"private": true,
"scripts": {
"build:cli": "bun run --filter @raystack/chronicle build:cli",
"dev:docs": "./packages/chronicle/bin/chronicle.js dev --config docs/chronicle.yaml",
"start:docs": "./packages/chronicle/bin/chronicle.js start --config docs/chronicle.yaml",
"build:docs": "./packages/chronicle/bin/chronicle.js build --config docs/chronicle.yaml",
"dev:examples:basic": "./packages/chronicle/bin/chronicle.js dev --config examples/basic/chronicle.yaml",
"build:examples:basic": "./packages/chronicle/bin/chronicle.js build --config examples/basic/chronicle.yaml",
"dev:examples:versioned": "./packages/chronicle/bin/chronicle.js dev --config examples/versioned/chronicle.yaml",
"build:examples:versioned": "./packages/chronicle/bin/chronicle.js build --config examples/versioned/chronicle.yaml"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@raystack/chronicle": "workspace:*",
"remark-reading-time": "^2.1.0"
}
}