-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.83 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
{
"name": "mp-oi-library",
"displayName": "mp-oi-library",
"description": "Some algorithms and data structures template for competitive programming.",
"version": "0.2.6",
"repository": "https://github.com/Mr-Python-in-China/mp-oi-library",
"license": "LGPL-3.0-only",
"author": {
"name": "MrPython",
"email": "mrpython@qq.com"
},
"publisher": "MrPython",
"type": "module",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Snippets"
],
"activationEvents": [],
"main": "./dist/extension.cjs",
"contributes": {
"commands": [
{
"command": "mp-oi-library.chooseInclude",
"title": "Choose file to include",
"category": "Mrpython Library"
}
],
"menus": {
"commandPalette": [
{
"command": "mp-oi-library.chooseInclude",
"when": "resourceLangId == cpp"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production",
"lint": "eslint src",
"pack": "vsce pack --no-yarn -o mp-oi-library.vsix",
"publish": "vsce publish -i mp-oi-library.vsix",
"format:check": "prettier -c .",
"format:write": "prettier -w ."
},
"devDependencies": {
"@types/vscode": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/vsce": "^3.1.0",
"eslint": "^8.50.0",
"prettier": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"packageManager": "yarn@4.5.0"
}