-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
{
"name": "mp-component-jumper",
"displayName": "MP Component Jumper",
"description": "",
"version": "0.2.1",
"engines": {
"vscode": "^1.19.0"
},
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run build",
"build": "rm -rf ./dist && webpack --mode production",
"watch": "rm -rf ./dist && webpack --mode development --watch",
"lint": "eslint ./src --ext ts"
},
"devDependencies": {
"@types/node": "^18.17.17",
"@types/vscode": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"ts-loader": "^9.5.4",
"typescript": "^5.4.5",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
},
"publisher": "mp-kit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chess99/mp-component-jumper.git"
},
"icon": "images/icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:wxml",
"onLanguage:json"
],
"contributes": {
"languages": [
{
"id": "wxml",
"extensions": [
".wxml"
],
"aliases": [
"WXML"
]
}
]
},
"dependencies": {
"get-tsconfig": "^4.10.1"
}
}