-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "react-outline",
"displayName": "React Outline",
"description": "A simple extension that shows the symbols and outlines for a React file.",
"version": "1.0.9",
"publisher": "ShubhamVerma18",
"preview": true,
"author": {
"name": "Shubham Verma",
"url": "https://shbm.fyi"
},
"icon": "public/assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ShubhamVerma1811/vscode-react-outline"
},
"homepage": "https://github.com/ShubhamVerma1811/vscode-react-outline",
"engines": {
"vscode": "^1.62.0"
},
"capabilities": {
"documentSymbolProvider": "true"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:typescriptreact",
"onLanguage:javascriptreact"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"format": "prettier --write src/**/*.{ts,tsx}"
},
"devDependencies": {
"@types/babel__traverse": "^7.14.2",
"@types/eslint": "^8.2.1",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.62.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"prettier": "^2.5.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@babel/parser": "^7.16.4",
"@babel/traverse": "^7.16.3"
}
}