-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.84 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
{
"name": "@friedbotstudio/create-baseline",
"version": "0.18.0",
"description": "Node CLI scaffolder that materializes the Claude Code baseline (hooks, skills, commands, MCP servers, governance docs) into a target project, with branded interactive install / upgrade / doctor flows. Run via `npx @friedbotstudio/create-baseline <target>`.",
"type": "module",
"bin": {
"create-baseline": "bin/cli.js"
},
"files": [
"bin/",
"src/",
"obj/template/",
"README.md"
],
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"build": "bash scripts/build-template.sh",
"prepack": "bash scripts/build-template.sh",
"test": "node --test --test-reporter=spec tests/*.test.mjs",
"test:full": "PUBLISH_TESTS=1 PLANTUML_TESTS=1 node --test --test-reporter=spec tests/*.test.mjs",
"test:mutation": "node scripts/mutation-oracle.mjs",
"build:site": "eleventy",
"dev:site": "eleventy --serve --port=4321",
"publish:check": "bash scripts/publish-check.sh",
"publish:precheck": "npm pack --dry-run",
"publish:files-diff": "node scripts/check-files-diff.mjs",
"publish:smoke": "node scripts/smoke-tarball.mjs",
"release": "semantic-release"
},
"keywords": [
"claude-code",
"baseline",
"scaffolder",
"create-baseline"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/friedbotstudio/baseline.git"
},
"author": {
"name": "Friedbot Studio Pvt Ltd",
"email": "hello@friedbotstudio.com"
},
"homepage": "https://baseline.friedbotstudio.com",
"dependencies": {
"@clack/prompts": "1.4.0"
},
"devDependencies": {
"@11ty/eleventy": "3.1.6",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@stryker-mutator/core": "9.6.1",
"nunjucks": "3.2.4",
"semantic-release": "25.0.3"
}
}