@r0kshan/cairn 1.0.0-RC11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@r0kshan/cairn",
3
+ "version": "1.0.0-RC11",
4
+ "description": "Architecture diagrams as code — typed views, semantic layout, overlap-free labels",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://github.com/R0kshan/cairn#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/R0kshan/cairn.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/R0kshan/cairn/issues"
13
+ },
14
+ "keywords": [
15
+ "diagram",
16
+ "diagram-as-code",
17
+ "architecture",
18
+ "enterprise-architecture",
19
+ "svg",
20
+ "elkjs",
21
+ "cli"
22
+ ],
23
+ "type": "module",
24
+ "engines": {
25
+ "node": ">=22.6"
26
+ },
27
+ "bin": {
28
+ "cairn": "bin/cairn.mjs"
29
+ },
30
+ "exports": {
31
+ ".": "./dist/cairn.mjs",
32
+ "./package.json": "./package.json"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "files": [
38
+ "bin/cairn.mjs",
39
+ "dist/cairn.mjs",
40
+ "README.md",
41
+ "LICENSE.md",
42
+ "THIRD-PARTY-NOTICES.md"
43
+ ],
44
+ "scripts": {
45
+ "cairn": "node --experimental-strip-types src/cli.ts",
46
+ "test": "node --experimental-strip-types scripts/sweep.ts --jobs=auto && node --experimental-strip-types --test \"tests/*.test.ts\"",
47
+ "snapshots": "node --experimental-strip-types scripts/update-snapshots.mjs",
48
+ "build:binaries": "bash scripts/build-binaries.sh",
49
+ "build:api": "bash scripts/build-api.sh",
50
+ "build:cli": "bash scripts/build-cli.sh",
51
+ "build:playground": "bash scripts/build-playground.sh",
52
+ "prepack": "npm run build:cli && npm run build:api",
53
+ "lint": "biome lint src tests",
54
+ "format": "biome format --write src tests",
55
+ "typecheck": "tsc --noEmit",
56
+ "snapshots:report": "node --experimental-strip-types scripts/snapshots-report.ts",
57
+ "sweep": "node --experimental-strip-types scripts/sweep.ts --jobs=auto",
58
+ "test:binary": "bash scripts/smoke-binary.sh",
59
+ "test:npm": "bash scripts/smoke-npm.sh",
60
+ "examples": "node --experimental-strip-types scripts/render-examples.mjs"
61
+ },
62
+ "devDependencies": {
63
+ "@biomejs/biome": "^2.5.4",
64
+ "@types/node": "^26.1.1",
65
+ "elkjs": "^0.12.0",
66
+ "esbuild": "0.28.1",
67
+ "typescript": "^7.0.2"
68
+ }
69
+ }