@ghostpaw/grimoire 0.2.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,96 @@
1
+ {
2
+ "name": "@ghostpaw/grimoire",
3
+ "version": "0.2.0",
4
+ "description": "Skill and capability model for Node.js — SQLite, zero dependencies, with a built-in LLM tool facade",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ },
12
+ "require": {
13
+ "types": "./dist/index.d.cts",
14
+ "default": "./dist/index.cjs"
15
+ }
16
+ }
17
+ },
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "sideEffects": false,
25
+ "scripts": {
26
+ "build": "tsup",
27
+ "dev": "tsup --watch",
28
+ "demo:build": "node scripts/build_demo.mjs",
29
+ "demo:watch": "node scripts/build_demo.mjs --watch",
30
+ "demo:serve": "npm run demo:build && node scripts/serve_demo.mjs",
31
+ "test": "node --experimental-strip-types --test --test-reporter=dot 'src/**/*.test.ts'",
32
+ "lint": "biome check",
33
+ "lint:fix": "biome check --fix",
34
+ "format": "biome format --write",
35
+ "typecheck": "tsc --noEmit",
36
+ "check": "biome check && tsc --noEmit",
37
+ "clean": "rm -rf dist demo",
38
+ "version": "biome format --write package.json package-lock.json && git add package.json package-lock.json",
39
+ "prepublishOnly": "npm run check && npm run build",
40
+ "release:patch": "npm version patch && git push && git push --tags",
41
+ "release:minor": "npm version minor && git push && git push --tags",
42
+ "release:major": "npm version major && git push && git push --tags",
43
+ "demo:seed": "node scripts/seed_registry.mjs"
44
+ },
45
+ "engines": {
46
+ "node": ">=24"
47
+ },
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
51
+ "keywords": [
52
+ "skill",
53
+ "capability",
54
+ "grimoire",
55
+ "procedure",
56
+ "proficiency",
57
+ "sqlite",
58
+ "local-first",
59
+ "llm",
60
+ "ai",
61
+ "agent",
62
+ "tools",
63
+ "typescript",
64
+ "zero-dependencies"
65
+ ],
66
+ "license": "MIT",
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "https://github.com/GhostPawJS/grimoire.git"
70
+ },
71
+ "author": {
72
+ "name": "Anonyfox",
73
+ "email": "max@anonyfox.com",
74
+ "url": "https://anonyfox.com"
75
+ },
76
+ "homepage": "https://github.com/GhostPawJS/grimoire",
77
+ "bugs": {
78
+ "url": "https://github.com/GhostPawJS/grimoire/issues"
79
+ },
80
+ "funding": {
81
+ "type": "github",
82
+ "url": "https://github.com/sponsors/Anonyfox"
83
+ },
84
+ "volta": {
85
+ "node": "24.14.0"
86
+ },
87
+ "devDependencies": {
88
+ "@biomejs/biome": "2.4.4",
89
+ "@types/node": "^25.3.0",
90
+ "esbuild": "^0.27.4",
91
+ "preact": "^10.29.0",
92
+ "sql.js-fts5": "^1.4.0",
93
+ "tsup": "^8.4.0",
94
+ "typescript": "^5.9.3"
95
+ }
96
+ }