@nbt-dev/nbt 0.0.1
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/LICENSE +21 -0
- package/README.md +41 -0
- package/contracts/audit/.dist/contract.json +56 -0
- package/contracts/auth/.dist/contract.json +252 -0
- package/contracts/calendar/.dist/contract.json +141 -0
- package/contracts/chat/.dist/contract.json +229 -0
- package/contracts/crm/.dist/contract.json +239 -0
- package/contracts/design/.dist/contract.json +85 -0
- package/contracts/dns/.dist/contract.json +123 -0
- package/contracts/email/.dist/contract.json +267 -0
- package/contracts/embed/.dist/contract.json +137 -0
- package/contracts/ingest/.dist/contract.json +86 -0
- package/contracts/notifications/.dist/contract.json +133 -0
- package/contracts/phone/.dist/contract.json +168 -0
- package/contracts/registry/.dist/contract.json +49 -0
- package/contracts/workflows/.dist/contract.json +106 -0
- package/dist/nbt.js +3521 -0
- package/package.json +40 -0
- package/vendor/linux-x64/console +0 -0
- package/vendor/linux-x64/nbt +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nbt-dev/nbt",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "The nbt CLI and console daemon for the nbt-dev console — a fixed-target OS for web development. Linux/x64 prebuilt binaries.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"nbt": "dist/nbt.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/",
|
|
10
|
+
"vendor/linux-x64/",
|
|
11
|
+
"contracts/",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "node scripts/build.mjs",
|
|
17
|
+
"dev": "node scripts/build.mjs && node dist/nbt.js",
|
|
18
|
+
"prepack": "node scripts/build.mjs"
|
|
19
|
+
},
|
|
20
|
+
"os": [
|
|
21
|
+
"linux"
|
|
22
|
+
],
|
|
23
|
+
"cpu": [
|
|
24
|
+
"x64"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=16"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"esbuild": "^0.28.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/node": "^22.0.0",
|
|
38
|
+
"commander": "^15.0.0"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
Binary file
|
|
Binary file
|