forked from byteball/oscript-vscode-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.08 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.08 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "oscript-vscode-plugin",
"displayName": "Oscript",
"description": "Oscript support for writing Autonomous Agents in VS Code",
"author": "Obyte",
"license": "MIT",
"version": "0.3.9",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/byteball/oscript-vscode-plugin"
},
"main": "./client/extension",
"activationEvents": [
"onLanguage:oscript",
"onCommand:oscript.test.currentFile",
"onCommand:oscript.test.example",
"workspaceContains:*.test.oscript.js"
],
"publisher": "obyte",
"categories": [
"Programming Languages"
],
"keywords": [
"oscript",
"obyte",
"byteball",
"autonomous agents",
"aa"
],
"contributes": {
"commands": [
{
"command": "oscript.deployAa",
"title": "Oscript: Deploy Autonomous Agent"
},
{
"command": "oscript.checkDuplicateAa",
"title": "Oscript: Check if Autonomous Agent is already deployed"
},
{
"command": "oscript.test.currentFile",
"title": "Oscript: Test current file"
},
{
"command": "oscript.test.example",
"title": "Oscript: Create test example files"
}
],
"languages": [
{
"id": "oscript",
"aliases": [
"oscript",
"ojson"
],
"extensions": [
"oscript",
"aa",
"ojson"
],
"configuration": "./client/syntaxes/oscript-language-configuration.json"
},
{
"id": "oscript.formula",
"aliases": [
"formula",
"oscript.formula"
],
"configuration": "./client/syntaxes/formula-language-configuration.json"
}
],
"grammars": [
{
"language": "oscript",
"scopeName": "source.oscript",
"path": "./client/syntaxes/oscript.tmLanguage.json"
},
{
"language": "oscript.formula",
"scopeName": "source.oscript.formula",
"path": "./client/syntaxes/formula.tmLanguage.json"
}
]
},
"engines": {
"vscode": "^1.33.0"
},
"scripts": {
"publish": "vsce publish --yarn",
"package": "vsce package --yarn",
"postinstall": "cd client && yarn && cd ../server && yarn && cd ..",
"cleannm": "rm -rf node_modules && cd client && rm -rf node_modules && cd ../server && rm -rf node_modules && cd .."
},
"dependencies": {
"aa-testkit": "git+https://github.com/valyakin/aa-testkit.git",
"axios": "^0.21.1",
"chai": "^4.2.0",
"chokidar": "^3.3.1",
"deep-equal-in-any-order": "^1.0.27",
"lodash": "^4.17.15",
"mocha": "^7.1.1",
"obyte": "^0.1.7",
"ocore": "git+https://github.com/byteball/ocore.git",
"open": "^7.0.3",
"to-regex": "^3.0.2",
"vscode-languageclient": "^5.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"merge-options": "^2.0.0",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"resolutions": {
"level-rocksdb": "^4.0.0"
},
"__metadata": {
"id": "a753315b-a289-4201-9623-5bbcbccc2be0",
"publisherDisplayName": "Obyte",
"publisherId": "31efd078-8ead-47ad-9b22-ebcf2cb103e1"
}
}