-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.52 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.52 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
{
"name": "aqora",
"displayName": "aqora",
"description": "aqora cli wrapped for vscode",
"version": "1.4.0",
"type": "commonjs",
"publisher": "aqora-quantum",
"repository": "https://github.com/aqora-io/vscode-aqora",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Snippets",
"Notebooks",
"Other"
],
"icon": "images/icon_white.png",
"bugs": {
"url": "https://github.com/aqora-io/vscode-aqora/issues"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"menus": {
"notebook/toolbar": [
{
"command": "aqora.test",
"when": "resourceExtname == '.ipynb'",
"group": "navigation@1"
}
]
},
"commands": [
{
"command": "aqora.templateCompetition",
"title": "Aqora: Clone a template from aqora.io."
},
{
"command": "aqora.login",
"title": "Aqora: Login into aqora via OAuth2."
},
{
"command": "aqora.test",
"title": "Aqora: Test your aqora project.",
"icon": {
"dark": "images/icon_white.png",
"light": "images/icon_black.png"
}
},
{
"command": "aqora.uplaod",
"title": "Aqora: Upload your project to Aqora platform"
},
{
"command": "aqora.dataset.list",
"title": "Aqora: Show available datasets"
}
]
},
"scripts": {
"codegen": "graphql-codegen --config ./src/codegen.ts",
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:codegen": "graphql-codegen -w --config ./src/codegen.ts",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@parcel/watcher": "^2.5.0",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.10",
"@types/node": "~20.17.16",
"@types/vscode": "^1.83.0",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.3"
},
"dependencies": {
"@apollo/client": "^3.12.7",
"@graphql-typed-document-node/core": "^3.2.0",
"@msgpack/msgpack": "3.0.0-beta2",
"@noble/ed25519": "^2.2.3",
"cross-fetch": "^4.1.0",
"graphql": "^16.10.0",
"graphql-http": "^1.22.4",
"graphql-ws": "^6.0.2",
"http": "0.0.1-security",
"luxon": "^3.5.0",
"pickleparser": "^0.2.1",
"smol-toml": "^1.3.1",
"ws": "^8.18.0",
"xdg-app-paths": "^8.3.0"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"@babel/runtime@<7.26.10": ">=7.26.10",
"@babel/helpers@<7.26.10": ">=7.26.10"
}
}
}