-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.24 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@ankhorage/board",
"version": "0.3.2",
"description": "Explicit Ankh provider bootstrap for boarding websites and source artifacts into Ankhorage.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/ankhorage/board#readme",
"bugs": {
"url": "https://github.com/ankhorage/board/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankhorage/board.git"
},
"keywords": [
"ankhorage",
"board",
"cli",
"bun",
"typescript"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli/index.d.ts",
"import": "./dist/cli/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"paradox"
],
"bin": {
"ankhorage-board": "./dist/cli/index.js"
},
"ankh": {
"category": "board",
"provider": "./dist/ankh.provider.js",
"capabilities": [
"board.web.import",
"board.openapi.import",
"board.manifest.generate"
]
},
"scripts": {
"build": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo && bun x tsc -p tsconfig.build.json",
"typecheck": "bun x tsc --noEmit -p tsconfig.json",
"lint": "ankhorage-eslint . --max-warnings=0",
"lint:fix": "ankhorage-eslint . --fix --max-warnings=0",
"format": "ankhorage-prettier --write .",
"format:check": "ankhorage-prettier --check .",
"test": "bun test",
"knip": "ankhorage-knip",
"docs": "bunx @ankhorage/paradox && ankhorage-prettier --write README.md paradox",
"changeset": "changeset",
"changeset:status": "changeset status --since=origin/main",
"version-packages": "changeset version"
},
"dependencies": {
"@ankhorage/contracts": "^2.1.0"
},
"devDependencies": {
"@ankhorage/ankh": "^0.6.0",
"@ankhorage/devtools": "^1.0.6",
"@ankhorage/paradox": "^0.1.10",
"@changesets/cli": "^2.31.0",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"typescript": "^5.9.3"
},
"sideEffects": false,
"packageManager": "bun@1.3.13"
}