-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.41 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
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
{
"name": "fstring-converter",
"displayName": "f-string Converter (Python 3.6+)",
"description": "Converts python string to f-string and vice-versa based on presence of {.*} within quotes.",
"version": "1.0.5",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"license": "MIT",
"publisher": "mdebi",
"repository": {
"type": "git",
"url": "https://github.com/mdebi/fstring-converter"
},
"bugs": {
"url": "https://github.com/mdebi/fstring-converter/issues"
},
"activationEvents": [
"onLanguage:python"
],
"main": "./dist/extension-node",
"browser": "./dist/extension-web",
"contributes": {
"configuration": [
{
"title": "f-string Converter (Python 3.6+)",
"properties": {
"fstring-converter.enable": {
"type": "boolean",
"description": "Extension is enabled. This should not be used with python version below 3.6 and `str.format` is not supported.",
"default": true
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "npm run compile && npm run test-node",
"test-node": "node ./dist/test/runTest.js",
"test-web": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=./dist/test/suite/index-web.js --headless",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"package": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.x",
"@types/vscode": "^1.80.0",
"@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.3",
"@vscode/test-web": "^0.0.50",
"assert": "^2.0.0",
"eslint": "^8.44.0",
"glob": "^10.3.3",
"mocha": "^10.8.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"icon": "logo.png",
"keywords": [
"python",
"string",
"converter",
"auto",
"autocorrect",
"fstring",
"f-string"
]
}