-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.24 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
{
"name": "nestjs-route-jumper",
"displayName": "Nestjs Route Jumper",
"description": "A tool developed for nestjs to search for controllers through access paths ",
"version": "0.8.0",
"publisher": "hmydgz",
"icon": "resources/logo.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"repository": {
"type": "git",
"url": "https://github.com/hmydgz/nestjs-route-jumper"
},
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "nestjs-route-jumper",
"title": "Nestjs route jumper",
"icon": "resources/logo.svg"
}
]
},
"views": {
"nestjs-route-jumper": [
{
"id": "webview",
"type": "webview",
"name": "Nestjs route jumper"
}
]
},
"languages": [
{
"id": "nestjs"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run compile-src && npm run compile-web",
"compile-src": "tsc -p ./src",
"compile-web": "tsc --project tsconfig.web.json && vite build",
"dev:web": "vite",
"watch": "npm run compile",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@nestjs/common": "^10.3.0",
"@types/mocha": "^10.0.6",
"@types/node": "~20.10.5",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/store": "^2.0.5",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"less": "^4.2.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"uglify-js": "^3.17.4",
"vite": "^5.0.8"
},
"dependencies": {
"@vscode/codicons": "^0.0.35",
"clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"store": "^2.0.12",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}