-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.76 KB
/
package.json
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
108
109
110
111
112
113
114
115
116
{
"name": "ndn-workspace-vscode",
"displayName": "ndn-workspace-vscode",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onFileSystem:ndnws"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ndnws.workspaceInit",
"title": "Setup Workspace",
"category": "NDN Workspace"
},
{
"command": "ndnws.init",
"title": "Connect to workspace",
"category": "NDN Workspace"
},
{
"command": "ndnws.reset",
"title": "Disconnect to workspace",
"category": "NDN Workspace"
}
],
"menus": {
"commandPalette": [
{
"command": "ndnws.init",
"when": "workbenchState == workspace"
},
{
"command": "ndnws.reset",
"when": "workbenchState == workspace"
},
{
"command": "ndnws.workspaceInit",
"when": "workbenchState != workspace"
}
]
},
"configuration": {
"title": "NDN Workspace",
"properties": {
"ndnws.trustAnchor": {
"type": "string",
"default": "",
"description": "The trust anchor in base64.",
"editPresentation": "multilineText"
},
"ndnws.safeBag": {
"type": "string",
"default": "",
"description": "The local node's safebag in base64.",
"editPresentation": "multilineText"
},
"ndnws.passCode": {
"type": "string",
"default": "",
"description": "The safebag's passcode"
}
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run esbuild-base --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"compile": "pnpm run esbuild-base --sourcemap",
"watch": "pnpm run esbuild-base --sourcemap --watch",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@ndn/autoconfig": "https://ndnts-nightly.ndn.today/autoconfig.tgz",
"@ndn/endpoint": "https://ndnts-nightly.ndn.today/endpoint.tgz",
"@ndn/fw": "https://ndnts-nightly.ndn.today/fw.tgz",
"@ndn/keychain": "https://ndnts-nightly.ndn.today/keychain.tgz",
"@ndn/l3face": "https://ndnts-nightly.ndn.today/l3face.tgz",
"@ndn/naming-convention2": "https://ndnts-nightly.ndn.today/naming-convention2.tgz",
"@ndn/ndncert": "https://ndnts-nightly.ndn.today/ndncert.tgz",
"@ndn/ndnsec": "https://ndnts-nightly.ndn.today/ndnsec.tgz",
"@ndn/nfdmgmt": "https://ndnts-nightly.ndn.today/nfdmgmt.tgz",
"@ndn/packet": "https://ndnts-nightly.ndn.today/packet.tgz",
"@ndn/rdr": "https://ndnts-nightly.ndn.today/rdr.tgz",
"@ndn/segmented-object": "https://ndnts-nightly.ndn.today/segmented-object.tgz",
"@ndn/svs": "https://ndnts-nightly.ndn.today/svs.tgz",
"@ndn/sync": "https://ndnts-nightly.ndn.today/sync.tgz",
"@ndn/tlv": "https://ndnts-nightly.ndn.today/tlv.tgz",
"@ndn/util": "https://ndnts-nightly.ndn.today/util.tgz",
"@ndn/ws-transport": "https://ndnts-nightly.ndn.today/ws-transport.tgz",
"@syncedstore/core": "^0.6.0",
"@types/mocha": "^10.0.6",
"@types/node": "~18.19.22",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@ucla-irl/ndnts-aux": "^1.1.5",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"typescript": "^5.4.2",
"yjs": "^13.6.14"
}
}