-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "@xananode/workspace",
"version": "0.1.0",
"description": "Local-first workspace engine for XanaNode Studio, CLI, and editor integrations.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./cli": "./src/cli.js"
},
"bin": {
"xananode-workspace": "./bin/xananode-workspace.js",
"xananode-substrate-workspace": "./bin/xananode-workspace.js"
},
"files": [
"src",
"bin",
"templates",
"README.md",
"LICENSE",
"vendor/xananode-core"
],
"scripts": {
"test": "node --test test/*.test.js",
"sdk:init": "git submodule update --init --recursive vendor/xananode-core && npm install",
"sdk:update": "git submodule update --init --remote --merge vendor/xananode-core && npm install",
"sdk:status": "git submodule status --recursive",
"build:substrate-source": "node tools/build-substrate-source.mjs",
"demo": "node ./bin/xananode-workspace.js init ./tmp-demo --name \"Demo Substrate\" --author \"Demo Author\" && node ./bin/xananode-workspace.js status ./tmp-demo",
"package:win": "node ../scripts/package-executables.mjs workspace"
},
"keywords": [
"xananode",
"workspace",
"knowledge-graph",
"git",
"local-first",
"studio"
],
"license": "Apache-2.0",
"dependencies": {
"@xananode/core": "file:./vendor/xananode-core",
"commander": "^12.1.0"
},
"peerDependencies": {
"@xananode/core": ">=0.1.0"
}
}