-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "@hyperpolymath/affine-vscode",
"version": "0.1.0",
"description": "JS-side adapter for AffineScript's stdlib/Vscode.affine + stdlib/VscodeLanguageClient.affine binding modules. Resolves each extern fn to a real vscode / vscode-languageclient call and maintains the FFI handle table.",
"main": "./mod.js",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hyperpolymath/affinescript.git",
"directory": "packages/affine-vscode"
},
"homepage": "https://github.com/hyperpolymath/affinescript/tree/main/packages/affine-vscode",
"bugs": "https://github.com/hyperpolymath/affinescript/issues",
"keywords": [
"affinescript",
"vscode",
"vscode-extension",
"language-server",
"wasm",
"ffi-adapter"
],
"files": [
"mod.js",
"README.adoc"
],
"peerDependencies": {
"vscode": "*",
"vscode-languageclient": "^9.0.0"
},
"peerDependenciesMeta": {
"vscode-languageclient": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}