-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.25 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
114
115
116
117
118
{
"name": "vscode-robots-dot-txt-support",
"displayName": "Robots.txt Support for Visual Studio Code",
"description": "An extension for Visual Studio Code that enables support for robots.txt files.",
"icon": "./images/icon.png",
"license": "MIT",
"version": "1.5.1",
"publisher": "darian-benam",
"keywords": [
"config",
"robots.txt",
"web"
],
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Snippets",
"Other"
],
"contributes": {
"configuration": {
"title": "Robots.txt",
"properties": {
"robots.text.analyzeSyntax": {
"type": "boolean",
"default": true,
"description": "Specifies whether to provide real-time diagnostic hints related to syntax or not."
}
}
},
"commands": [
{
"command": "robotsDotText.importRobotsDotTextFileFromWeb",
"title": "Robots.txt: Import From Web"
}
],
"grammars": [
{
"language": "robots-txt",
"scopeName": "text.robots-txt",
"path": "./syntaxes/robots-txt.tmLanguage.json"
}
],
"languages": [
{
"id": "robots-txt",
"aliases": [
"Robots.txt",
"robots-txt"
],
"extensions": [
"robots.txt"
],
"configuration": "./language-configuration.json"
}
],
"menus": {
"commandPalette": [
{
"command": "robotsDotText.importRobotsDotTextFileFromWeb",
"when": "editorLangId == robots-txt"
}
]
},
"snippets": [
{
"language": "robots-txt",
"path": "./snippets/robots-txt-snippets.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/BeardedFish/vscode-robots-dot-txt-support.git"
},
"main": "./client/dist/extension.js",
"scripts": {
"install-dependencies": "npm ci && cd client && npm ci && cd ../server && npm ci && cd ..",
"vscode:prepublish": "npm run webpack",
"prepare": "husky install",
"clean": "rimraf client/dist && rimraf server/dist",
"compile": "npm run webpack",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "eslint --config ./client/.eslintrc.json ./client/src/*.ts",
"lint:server": "eslint --config ./server/.eslintrc.json ./server/src/*.ts",
"lint:test": "eslint --config ./test/.eslintrc.json ./test/src/*.ts",
"lint:fix": "npm run lint:client --fix && npm run lint:server --fix && npm run lint:test --fix",
"test": "tsc -p ./test && node ./test/dist/run-tests.js",
"webpack": "npm run clean && webpack --mode production --config ./client/webpack.config.js && webpack --mode production --config ./server/webpack.config.js",
"webpack:dev": "npm run clean && webpack --mode development --config ./client/webpack.config.js && webpack --mode development --config ./server/webpack.config.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.2.5",
"@types/node-fetch": "^2.6.6",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.41.0",
"glob": "^8.1.0",
"husky": "^8.0.3",
"merge-options": "^3.0.4",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}