inistate-core 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,56 @@
1
+ {
2
+ "name": "inistate-core",
3
+ "version": "0.1.0",
4
+ "description": "Free, local runtime for FACTSOps workflows — the deterministic floor of the Inistate stack. Runs governed state machines on persistence you control (SQLite by default), driven over MCP.",
5
+ "type": "module",
6
+ "author": "GNEY SOFTWARE PTE LTD",
7
+ "license": "SEE LICENSE IN LICENSE",
8
+ "private": false,
9
+ "bin": {
10
+ "inistate-core": "./dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist/index.js",
14
+ "data/inistate-schema.json",
15
+ "LICENSE",
16
+ "README.md"
17
+ ],
18
+ "engines": {
19
+ "node": ">=20"
20
+ },
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "build:dist": "npm run build && node scripts/build-dist.mjs",
24
+ "prepare": "npm run build",
25
+ "prepublishOnly": "npm run check && npm run build:dist",
26
+ "watch": "tsc --watch",
27
+ "start": "node build/index.js",
28
+ "start:dist": "node dist/index.js",
29
+ "test": "vitest run",
30
+ "test:watch": "vitest",
31
+ "scan": "node scripts/forbidden-symbols.mjs",
32
+ "check": "npm run build && npm run scan && npm run test"
33
+ },
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.27.1",
36
+ "better-sqlite3": "^11.10.0",
37
+ "inistate-mcp": "^1.1.0",
38
+ "zod": "^3.25.0"
39
+ },
40
+ "peerDependencies": {
41
+ "exceljs": "^4.4.0"
42
+ },
43
+ "peerDependenciesMeta": {
44
+ "exceljs": {
45
+ "optional": true
46
+ }
47
+ },
48
+ "devDependencies": {
49
+ "@types/better-sqlite3": "^7.6.11",
50
+ "@types/node": "^22.0.0",
51
+ "esbuild": "^0.28.0",
52
+ "exceljs": "^4.4.0",
53
+ "typescript": "^5.8.0",
54
+ "vitest": "^3.2.4"
55
+ }
56
+ }