-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.63 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
{
"name": "data-studio",
"displayName": "Data Studio",
"description": "Efficiently preview and edit JSONL, CSV and other data formats in a table view with lazy loading, filtering, statistics, import/export support.",
"version": "0.2.0",
"publisher": "data-studio",
"engines": {
"vscode": "^1.85.0"
},
"packageManager": "bun@1.3.0",
"categories": [
"Other",
"Data Science"
],
"keywords": [
"jsonl",
"json lines",
"csv",
"table",
"editor",
"preview",
"data"
],
"activationEvents": [],
"main": "./dist/extension.js",
"files": [
"dist/**",
"media/**",
"package.json"
],
"contributes": {
"customEditors": [
{
"viewType": "dataStudio.Editor",
"displayName": "Data Studio",
"selector": [
{
"filenamePattern": "*.jsonl"
},
{
"filenamePattern": "*.ndjson"
},
{
"filenamePattern": "*.csv"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "dataStudio.openInEditor",
"title": "Open in Text Editor",
"icon": "$(file-code)"
},
{
"command": "dataStudio.refresh",
"title": "Refresh",
"icon": "$(refresh)"
}
],
"configuration": {
"title": "Data Studio",
"properties": {
"dataStudio.defaultPageSize": {
"type": "number",
"default": 100,
"description": "Number of rows to load initially"
},
"dataStudio.lazyLoadBatchSize": {
"type": "number",
"default": 50,
"description": "Number of rows to load per batch during lazy loading"
},
"dataStudio.theme": {
"type": "string",
"enum": [
"auto",
"light",
"dark"
],
"default": "auto",
"description": "Table theme"
},
"dataStudio.language": {
"type": "string",
"enum": [
"en",
"zh"
],
"default": "en",
"description": "UI language for Data Studio"
}
}
}
},
"scripts": {
"vscode:prepublish": "bun run package",
"build": "bun run compile",
"compile": "bunx tsup",
"watch": "bunx tsup --watch",
"package": "bunx tsup --minify",
"vsix": "bunx @vscode/vsce package --no-dependencies --allow-missing-repository --skip-license"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.5.0",
"typescript": "^6.0.0",
"tsup": "^8.5.0"
}
}