-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.83 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@sebasoft/neuron-js",
"version": "0.5.2",
"type": "module",
"description": "AI-friendly TypeScript rules engine for serializable JSON business rules and deterministic workflow decisions.",
"repository": {
"type": "git",
"url": "git+https://github.com/SebaSOFT/neuron-js.git"
},
"llms": "https://sebasoft.github.io/neuron-js/llms.txt",
"llmsFull": "https://sebasoft.github.io/neuron-js/llms-full.txt",
"packageManager": "yarn@4.13.0",
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\" && tshy",
"dev": "vitest",
"test": "vitest run",
"examples": "yarn build && node examples/pricing-rules/run.ts && node examples/eligibility-check/run.ts && node examples/workflow-routing/run.ts && node examples/n8n-code-node/run.ts && node examples/langgraph-decision-node/run.ts",
"benchmark": "yarn build && node benchmarks/run.ts",
"benchmark:charts": "node benchmarks/charts/generate.ts",
"lint": "biome check .",
"format": "biome format --write .",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"docs:dev": "vitepress dev docs",
"docs:build": "typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@changesets/cli": "^2.31.0",
"@types/json-logic-js": "^2",
"@types/node": "^25.6.0",
"esbuild": "^0.28.1",
"json-logic-js": "^2.0.5",
"json-rules-engine": "^7.3.1",
"rule-engine-js": "^1.0.7",
"tshy": "^4.1.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.3",
"vitepress": "^1.6.3",
"vitest": "^4.1.5"
},
"tshy": {
"exports": {
".": "./src/index.ts"
},
"selfReferencing": false
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"src",
"schemas",
"examples",
"ai/skills",
"!src/**/*.test.ts",
"README.md",
"LICENSE"
],
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"keywords": [
"rules-engine",
"rule-engine",
"json-rules",
"business-rules",
"decision-engine",
"json-logic",
"workflow-automation",
"typescript",
"javascript",
"nodejs",
"browser",
"ai-agents",
"llm",
"mcp",
"deterministic",
"functional-programming",
"validation",
"feature-flags",
"policy-engine",
"authorization",
"n8n",
"langgraph"
]
}