-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.18 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
{
"name": "neo-developer-kit",
"displayName": "neo-developer-kit",
"description": "Build faster on Neo. The Neo Developer Kit bundles powerful development tools, project templates, deployment utilities, and blockchain integrations into a single package, helping developers go from idea to production with minimal friction.",
"version": "0.0.1",
"license": "GPL-3.0-or-later",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "neo-developer-kit",
"title": "Neo Developer Kit",
"icon": "media/neo.png"
}
]
},
"views": {
"neo-developer-kit": [
{
"id": "neo.kitView",
"type": "webview",
"name": "Tools"
}
]
},
"commands": [
{
"command": "neo.openPanel",
"title": "Neo: Open Developer Kit"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "yarn run check-types && yarn run lint && node esbuild.js && yarn run build:css",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:css": "tailwindcss -i ./src/renderer/styles.css -o ./media/css/tailwind.css --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "yarn run check-types && yarn run lint && node esbuild.js --production && yarn run build:css",
"build:css": "tailwindcss -i ./src/renderer/styles.css -o ./media/css/tailwind.css --minify",
"check-types": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.renderer.json",
"lint": "eslint src"
},
"dependencies": {
"@cityofzion/neon-js": "^5.9.0",
"axios": "^1.17.0"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/vscode": "^1.94.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"npm-run-all": "^4.1.5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}