-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.14 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
{
"name": "dafintellisense",
"publisher": "doronazulay",
"displayName": "Daf - IntelliSense",
"icon": "images/icon.png",
"description": "IntelliSense for DAF PHP component tags. Requires PHP in PATH.",
"version": "0.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DoronAzulayPrograming/DafIntelliSense.git"
},
"bugs": {
"url": "https://github.com/DoronAzulayPrograming/DafIntelliSense/issues"
},
"homepage": "https://github.com/DoronAzulayPrograming/DafIntelliSense#readme",
"keywords": [
"daf",
"php",
"intellisense",
"autocomplete",
"hover",
"definition"
],
"engines": {
"vscode": "^1.109.0"
},
"categories": [
"Other"
],
"activationEvents": ["onLanguage:php"],
"main": "./out/extension.js",
"contributes": {
"semanticTokenTypes": [
{
"id": "dafComponent",
"superType": "class",
"description": "DAF component tag name"
}
],
"configuration": {
"title": "DAF",
"properties": {
"daf.namespaces": {
"type": "array",
"default": [],
"description": "DAF component namespaces like Use()/AddNamespaces(). Examples: 'views\\\\Shared\\\\*', 'Shared\\\\*', 'Auth\\\\Login'",
"items": {
"type": "string"
}
},
"daf.tagNameColor": {
"type": "string",
"default": "#4ec9b0",
"description": "Color used to decorate DAF component tag names in the editor."
},
"daf.skipPhars": {
"type": "array",
"default": [],
"description": "PHAR files to skip while indexing. Supports file names (e.g. 'MyPkg.phar') or path fragments.",
"items": {
"type": "string"
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src"
},
"devDependencies": {
"@types/node": "22.x",
"@types/vscode": "^1.109.0",
"@vscode/vsce": "^3.7.1",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}