This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 2.24 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
{
"name": "cosmwasm-ide",
"displayName": "CosmWasm IDE",
"description": "CosmWasm IDE for developers to build & optimize CosmWasm smart contracts",
"icon": "logo-128.png",
"version": "0.13.64",
"publisher": "oraichain",
"homepage": "https://cw-ide-webview.web.app",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/oraichain/cw-vscode.git"
},
"engines": {
"vscode": "^1.74.1"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/Cargo.toml"
],
"main": "./out/ext-src/extension",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "cosmwasm-ide",
"title": "CosmWasm IDE",
"icon": "logo-128.png"
}
]
},
"views": {
"cosmwasm-ide": [
{
"type": "webview",
"id": "cosmwasm.interactView",
"name": "CosmWasm IDE",
"icon": "logo-128.png"
}
]
},
"configuration": {
"title": "CosmWasm Configuration",
"properties": {}
}
},
"scripts": {
"compile": "npm run build-ext",
"start": "NODE_ENV=production react-scripts start",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p tsconfig.extension.json",
"test": "node ./node_modules/vscode/bin/test",
"build-ext": "tsc -p tsconfig.extension.json",
"build": "react-scripts --max_old_space_size=8192 build",
"vscode:prepublish": "npm run build-ext && react-scripts --max_old_space_size=8192 build"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^12.12.0",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/shelljs": "^0.8.9",
"@types/vscode": "^1.53.0",
"mocha": "^9.1.0",
"react-scripts": "^4.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"toml": "^3.0.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}