-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "droidnet-command-library",
"version": "2.1.1",
"description": "Schema-driven encoder/decoder and visual composer for building serial commands to control a vibrant community of Astromech droid components. Anyone can add their board by editing a JSON library — no code changes required.",
"license": "MPL-2.0",
"keywords": [
"serial",
"command-builder",
"firmware",
"arduino",
"esp32",
"astromech",
"droid",
"encoder"
],
"main": "src/droidnet-command-library.js",
"exports": {
".": "./src/droidnet-command-library.js",
"./ui": "./src/droidnet-command-library-ui.js",
"./node-loader": "./src/load-node.js",
"./schema": "./schema/library.schema.json"
},
"files": [
"src/",
"schema/",
"libraries/",
"scripts/validate.js",
"docs/",
"LICENSE"
],
"scripts": {
"test": "jest",
"validate": "node scripts/validate.js",
"lint": "eslint src scripts test || true"
},
"repository": {
"type": "git",
"url": "https://github.com/travisccook/droidnet-command-library.git"
},
"devDependencies": {
"ajv": "^8.17.1",
"jest": "^29.7.0"
}
}