-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.21 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
{
"name": "ifcx-vscode",
"displayName": "IFCX Syntax",
"description": "Syntax highlighting and language support for IFCX files",
"version": "0.0.4",
"preRelease": true,
"publisher": "yousheng",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.85.0"
},
"author": {
"name": "Yousheng",
"url": "https://github.com/youshengCode"
},
"repository": {
"type": "git",
"url": "https://github.com/youshengCode/ifcx-vscode.git"
},
"license": "MIT",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "ifcx",
"aliases": [
"IFCX",
"ifcx"
],
"extensions": [
".ifcx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ifcx",
"scopeName": "source.ifcx",
"path": "./syntaxes/ifcx.tmLanguage.json"
}
],
"configuration": {
"title": "IFCX Syntax",
"properties": {
"ifcx.schemaDefinition.enabled": {
"type": "boolean",
"default": true,
"description": "Enable schema definition navigation"
},
"ifcx.schemaDecoration.enabled": {
"type": "boolean",
"default": true,
"description": "Enable schema decorations"
},
"ifcx.identifierDecoration.enabled": {
"type": "boolean",
"default": true,
"description": "Enable identifier decorations"
},
"ifcx.identifierDefinition.enabled": {
"type": "boolean",
"default": true,
"description": "Enable identifier definition navigation"
},
"ifcx.autoFoldArray.enabled": {
"type": "boolean",
"default": true,
"description": "Enable auto-folding of arrays"
},
"ifcx.autoFoldArray.minElements": {
"type": "number",
"default": 10,
"description": "Minimum number of array elements to trigger auto-folding"
},
"ifcx.autoFoldSchema.enabled": {
"type": "boolean",
"default": true,
"description": "Enable auto-folding of schemas"
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.{ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,json,md}\"",
"check": "pnpm run format:check && pnpm run lint",
"build": "pnpm run check && pnpm run compile",
"dev": "pnpm run watch",
"test": "jest",
"package": "pnpm run build && vsce package",
"publish": "pnpm run build && vsce publish --pre-release"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/vsce": "^2.24.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}