-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
148 lines (148 loc) · 3.29 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "depot",
"icon": "depot_icon_code.png",
"displayName": "Depot Data Editor",
"description": "Structured data editor for VS Code - Edit JSON data directly inside of code with a spreadsheet like interface. Can be used to replace the need for .csv or XML files",
"publisher": "afterschool",
"contributors": [
"Kyle Kukshtel"
],
"version": "1.6.1",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Data Science",
"Other",
"Visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/kkukshtel/Depot"
},
"bugs": "https://github.com/kkukshtel/Depot/issues",
"homepage": "https://github.com/kkukshtel/Depot/blob/master/README.md",
"keywords": [
"data tools",
"data preview",
"data schema",
"data view",
"data viewer",
"data inspector",
"charts",
"grid",
"editable grid",
"graph",
"large data",
"data formatter",
"data export",
"data import",
"json array",
"json line",
"json",
"config",
"env",
"properties",
"Excel",
"workbook",
"spreadsheet",
"csv",
"xls",
"xlsb",
"xlsx",
"xlsm",
"xml"
],
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"activationEvents": [
"onCommand:depot.newDepotFile",
"onCustomEditor:depot.data"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Depot",
"properties": {
"depot.defaults.newFileName": {
"type": "string",
"default": "depot.dpo",
"description": "Default filename for creating a new Depot file from the command palette"
},
"depot.openWithSchemaEditingOn": {
"type": "boolean",
"default": true,
"description": "Depot files are opened with schema editing ON."
}
}
},
"customEditors": [
{
"viewType": "depot.data",
"displayName": "Depot Data",
"selector": [
{
"filenamePattern": "*.{dpo,depot}"
}
]
}
],
"commands": [
{
"command": "depot.newDepotFile",
"title": "Create a new Depot file",
"category": "Depot"
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"svelte-build": "rollup -c",
"svelte-dev": "rollup -c -w",
"start": "sirv public",
"vscode:prepublish": "rollup -c && tsc -p ./",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.0.1",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@rollup/plugin-replace": "^2.3.4",
"@vscode/test-electron": "^1.6.1",
"object-resolve-path": "^1.1.1",
"postcss": "^8.2.4",
"postcss-import": "^14.0.0",
"postcss-load-config": "^2.1.0",
"rollup-plugin-postcss": "^4.0.0",
"sirv-cli": "^1.0.0",
"svelte-preprocess": "^4.6.5",
"sveltejs-tippy": "^3.0.0",
"uuid": "^8.3.0"
}
}