-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 824 Bytes
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
{
"name": "@redxdevelopment/redxaihm",
"version": "0.1.0-alpha.1",
"description": "RedXaiHM ID-centric long-term database language, parser, storage engine, CLI, and editor.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./parser": "./src/parser.js",
"./store": "./src/store.js"
},
"bin": {
"redxai": "./src/cli.js"
},
"files": [
"src",
"editor",
"assets",
"scripts",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"check": "node --check src/*.js && node --check editor/*.js",
"ci": "npm run check && npm test"
},
"engines": {
"node": ">=20.11"
},
"keywords": [
"database",
"redxai",
"storage",
"parser",
"transactional"
],
"license": "Apache-2.0"
}