-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.32 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "sf-nova",
"displayName": "SF-nova",
"publisher": "SocialFinance",
"description": "",
"license": "SEE LICENSE IN LICENSE",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/SocialFinanceDigitalLabs/sf-nova-vscode-extension"
},
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other"
],
"keywords": [
"Streamlit",
"stlite",
"sf-nova"
],
"icon": "images/icon.png",
"activationEvents": [
"onView:sfnovaContainer"
],
"browser": "./dist/web/extension.js",
"contributes": {
"viewsWelcome": [
{
"view": "sfnovaPreviewContainer",
"contents": "Run a preview of your streamlit app. \n[Launch preview](command:sfnova.start)\n You should: \n-Have a python file opened and focused in the editor\n-Only run one app at a time\n-If you want to run a different app you should close the opened preview panel first"
},
{
"view": "sfnovaPreviewExplorer",
"contents": "Run a preview of your streamlit app. \n[Launch preview](command:sfnova.start)\n You should: \n-Have a python file opened and focused in the editor\n-Only run one app at a time\n-If you want to run a different app you should close the opened preview panel first"
}
],
"views": {
"sfnovaContainer": [
{
"id": "sfnovaPreviewContainer",
"name": "SF-nova",
"command": "sfnova.start",
"icon": "images/icon.png"
}
],
"explorer": [
{
"id": "sfnovaPreviewExplorer",
"name": "SF-nova",
"command": "sfnova.start",
"icon": "images/icon.png"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "sfnovaContainer",
"title": "SF-nova",
"icon": "images/icon.png",
"command": "sfnova.start",
"when": "view == sfnovaPreview"
}
]
},
"commands": [
{
"command": "sfnova.start",
"title": "launch streamlit preview"
}
],
"configuration": {
"title": "sf-nova (Streamlit)"
}
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "yarn run compile-web",
"vscode:prepublish": "yarn run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"fix:eslint": "eslint --fix src --ext ts",
"fix:prettier": "prettier --write .",
"check:eslint": "eslint src --ext ts",
"check:prettier": "prettier --check .",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/vscode": "^1.76.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vscode/test-web": "^0.0.35",
"@vscode/vsce": "^2.18.0",
"assert": "^2.0.0",
"eslint": "^8.33.0",
"minimatch": "^7.4.3",
"mocha": "^10.2.0",
"process": "^0.11.10",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"path": "^0.12.7"
}
}