-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
113 lines (113 loc) · 3.47 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
{
"name": "vscode-coldbox",
"displayName": "vscode-coldbox",
"description": "ColdBox Platform Support for Visual Studio Code",
"version": "1.1.1",
"publisher": "ortus-solutions",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.74.0"
},
"main": "./dist/extension",
"repository": {
"type": "git",
"url": "https://github.com/Ortus-Solutions/vscode-coldbox.git"
},
"bugs": {
"url": "https://github.com/Ortus-Solutions/vscode-coldbox/issues"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"CFML",
"ColdFusion",
"Lucee",
"ColdBox",
"MVC",
"HMVC"
],
"activationEvents": [
"onLanguage:cfml",
"workspaceContains:**/*.cfm",
"workspaceContains:**/*.cfml",
"workspaceContains:**/*.cfc"
],
"contributes": {
"snippets": [
{
"language": "cfml",
"path": "./snippets/snippets.json"
}
],
"configuration": {
"title": "ColdBox for VS Code configuration",
"properties": {
"coldbox.autocomplete": {
"type": "boolean",
"default": true,
"description": "Enable ColdBox autocomplete"
},
"coldbox.folders": {
"type": "object",
"default": {
"default": "/views",
"layouts": "/layouts"
},
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true,
"description": "Multiple folders"
},
"coldbox.extensions": {
"type": "array",
"default": [
".cfc",
".cfm",
".box.cfm"
],
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true,
"description": "Multiple extensions"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint -c .eslintrc.js --ext .ts ./src/**/*.ts",
"sublime:convert": "bash ./build.sh"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/lodash": "^4.14.194",
"@types/node": "^20.3.2",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vscode/vsce": "^2.19.0",
"babel-loader": "^9.1.2",
"babel-plugin-lodash": "^3.3.4",
"convert-snippets-to-vscode": "^1.0.2",
"eslint": "^8.24.0",
"eslint-plugin-jsdoc": "^46.3.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
}
}