@karmaniverous/jeeves-meta 0.1.0

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,111 @@
1
+ {
2
+ "name": "@karmaniverous/jeeves-meta",
3
+ "version": "0.1.0",
4
+ "author": "Jason Williscroft",
5
+ "description": "Knowledge synthesis engine for the Jeeves platform",
6
+ "license": "BSD-3-Clause",
7
+ "type": "module",
8
+ "module": "dist/index.js",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "config.schema.json"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/karmaniverous/jeeves-meta.git",
26
+ "directory": "packages/lib"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/karmaniverous/jeeves-meta/issues"
30
+ },
31
+ "homepage": "https://github.com/karmaniverous/jeeves-meta#readme",
32
+ "keywords": [
33
+ "synthesis",
34
+ "knowledge",
35
+ "meta",
36
+ "jeeves",
37
+ "typescript"
38
+ ],
39
+ "engines": {
40
+ "node": ">=20"
41
+ },
42
+ "dependencies": {
43
+ "zod": "^4.3.6"
44
+ },
45
+ "devDependencies": {
46
+ "@dotenvx/dotenvx": "^1.54.1",
47
+ "@rollup/plugin-commonjs": "^29.0.2",
48
+ "@rollup/plugin-json": "^6.1.0",
49
+ "@rollup/plugin-node-resolve": "^16.0.3",
50
+ "@rollup/plugin-typescript": "^12.3.0",
51
+ "@types/node": "^25.3.5",
52
+ "@vitest/coverage-v8": "^4.0.18",
53
+ "auto-changelog": "^2.5.0",
54
+ "cross-env": "^10.1.0",
55
+ "knip": "^5.85.0",
56
+ "release-it": "^19.2.4",
57
+ "rollup": "^4.59.0",
58
+ "rollup-plugin-dts": "^6.3.0",
59
+ "tslib": "^2.8.1",
60
+ "vitest": "^4.0.18"
61
+ },
62
+ "scripts": {
63
+ "build": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
64
+ "changelog": "auto-changelog",
65
+ "knip": "knip",
66
+ "lint": "eslint .",
67
+ "lint:fix": "eslint --fix .",
68
+ "release": "dotenvx run -f .env.local -- release-it",
69
+ "release:pre": "dotenvx run -f .env.local -- release-it --no-git.requireBranch --github.prerelease --preRelease",
70
+ "test": "vitest run",
71
+ "typecheck": "tsc",
72
+ "diagrams": "cd diagrams && plantuml -tpng -o ../assets -r ."
73
+ },
74
+ "auto-changelog": {
75
+ "output": "CHANGELOG.md",
76
+ "unreleased": true,
77
+ "commitLimit": false,
78
+ "hideCredit": true
79
+ },
80
+ "release-it": {
81
+ "git": {
82
+ "changelog": "npx auto-changelog --unreleased-only --stdout --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
83
+ "commitMessage": "chore: release @karmaniverous/jeeves-meta v${version}",
84
+ "tagName": "lib/${version}",
85
+ "requireBranch": "main"
86
+ },
87
+ "github": {
88
+ "release": true
89
+ },
90
+ "hooks": {
91
+ "after:init": [
92
+ "npm run lint",
93
+ "npm run test",
94
+ "npm run knip",
95
+ "npm run build"
96
+ ],
97
+ "before:npm:release": [
98
+ "npx auto-changelog -p",
99
+ "git add -A"
100
+ ],
101
+ "after:release": [
102
+ "git switch -c release/lib/${version}",
103
+ "git push -u origin release/lib/${version}",
104
+ "git switch ${branchName}"
105
+ ]
106
+ },
107
+ "npm": {
108
+ "publish": true
109
+ }
110
+ }
111
+ }