-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 4.01 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
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
{
"name": "vscode-roblox-atlas",
"displayName": "Atlas - Connecting AI Agents to Roblox Studio",
"description": "Atlas for VS Code",
"version": "2.2.2",
"repository": "https://github.com/UserGeneratedLLC/vscode-atlas",
"publisher": "UserGeneratedLLC",
"engines": {
"vscode": "^1.63.0"
},
"icon": "assets/extension-icon.png",
"categories": [
"Other"
],
"extensionPack": [
"BlueGlassBlock.better-json5",
"JohnnyMorganz.luau-lsp",
"JohnnyMorganz.stylua",
"Kampfkarren.selene-vscode"
],
"activationEvents": [
"onCommand:vscode-atlas.openMenu",
"workspaceContains:*.project.json5",
"workspaceContains:*.project.json"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-atlas.openMenu",
"title": "Open Menu",
"category": "Atlas"
}
],
"jsonValidation": [
{
"fileMatch": "*.project.json",
"url": "./dist/project.schema.json"
},
{
"fileMatch": "*.meta.json",
"url": "./dist/meta.schema.json"
},
{
"fileMatch": "*.model.json",
"url": "./dist/model.schema.json"
}
],
"configurationDefaults": {
"json5.schemas": [
{
"fileMatch": [
"*.project.json5"
],
"url": "./dist/project.schema.json"
},
{
"fileMatch": [
"*.meta.json5"
],
"url": "./dist/meta.schema.json"
},
{
"fileMatch": [
"*.model.json5"
],
"url": "./dist/model.schema.json"
}
]
},
"configuration": {
"title": "Atlas",
"properties": {
"atlas.additionalProjectPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"scope": "resource",
"title": "Additional Project Paths",
"description": "Additional folders to search for .project.json5 and .project.json files beyond the workspace root"
},
"atlas.projectPathDisplay": {
"type": "string",
"enum": [
"never",
"asNeeded",
"always"
],
"enumDescriptions": [
"Show only project file names.",
"Show paths only when multiple projects have the same name.",
"Always show full relative paths to project files."
],
"default": "asNeeded",
"scope": "resource",
"title": "Project Path Display",
"description": "Controls how project file paths are displayed in the project selection menu."
},
"atlas.showFullPath": {
"type": "string",
"enum": [
"never",
"asNeeded",
"always"
],
"enumDescriptions": [
"Never show full paths in project details.",
"Show full paths only for external projects or when project names are truncated.",
"Always show full paths in project details."
],
"default": "asNeeded",
"scope": "resource",
"title": "Show Full Path",
"description": "Controls when full file paths are shown in the project selection menu details."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^22",
"@types/vscode": "^1.63.0",
"@types/which": "^3.0.4",
"eslint": "^9.39.0",
"ts-loader": "^9.2.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"webpack": "^5.52.1",
"webpack-cli": "^7.0.2",
"which": "^5.0.0"
}
}