-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.6 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
{
"name": "git-cms",
"version": "1.1.5",
"description": "A Git-native, database-free CMS: article bodies in commit messages, publish by moving refs.",
"homepage": "https://flyingrobots.dev/git-stunts/git-cms",
"type": "module",
"bin": {
"git-cms": "./bin/git-cms.js"
},
"scripts": {
"serve": "node ./scripts/run-node-with-disabled-warning.mjs node bin/git-cms.js serve",
"dev": "docker compose up app",
"sandbox": "docker compose up --build playground",
"sandbox:shell": "docker compose exec playground sh",
"sandbox:logs": "docker compose logs -f playground",
"playground": "docker compose up --build playground",
"playground:shell": "docker compose exec playground sh",
"playground:logs": "docker compose logs -f playground",
"demo": "./scripts/demo.sh",
"quickstart": "./scripts/quickstart.sh",
"setup": "./scripts/setup.sh",
"capture:cms": "node ./scripts/capture-cms-footage.mjs",
"capture:git-cas:vhs": "./scripts/render-git-cas-vhs.sh inspect",
"capture:git-cas:tui": "./scripts/render-git-cas-vhs.sh dashboard",
"check:deps": "node scripts/check-dependency-integrity.mjs",
"check:docs": "./scripts/check-doc-drift.sh",
"test": "./test/run-docker.sh",
"test:setup": "./test/run-setup-tests.sh",
"test:sandbox": "./test/playground-smoke.sh",
"test:playground": "./test/playground-smoke.sh",
"test:local": "node ./scripts/run-node-with-disabled-warning.mjs node ./node_modules/vitest/vitest.mjs run",
"test:e2e": "node ./scripts/run-node-with-disabled-warning.mjs node ./node_modules/@playwright/test/cli.js test",
"test:git-e2e": "node ./scripts/run-node-with-disabled-warning.mjs node ./node_modules/vitest/vitest.mjs run --config vitest.e2e.config.js test/git-e2e.test.js"
},
"author": "James Ross <james@flyingrobots.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/flyingrobots/git-cms.git"
},
"dependencies": {
"@git-stunts/alfred": "^0.10.3",
"@git-stunts/docker-guard": "^0.1.0",
"@git-stunts/git-cas": "^5.3.2",
"@git-stunts/git-warp": "^14.8.0",
"@git-stunts/plumbing": "^2.8.0",
"@git-stunts/trailer-codec": "^2.1.1",
"@git-stunts/vault": "^1.0.1"
},
"overrides": {
"minimatch": "10.2.4",
"rollup": "4.59.0",
"@git-stunts/git-warp": {
"@git-stunts/git-cas": "5.3.2"
}
},
"pnpm": {
"overrides": {
"minimatch": "10.2.4",
"rollup": "4.59.0",
"@git-stunts/git-warp>@git-stunts/git-cas": "5.3.2"
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"vitest": "^4.1.0"
}
}