-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.21 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "wave-dash-unify",
"displayName": "Wave Dash Unify",
"description": "Automatically converts both FULLWIDTH TILDE and WAVE DASH characters to the WAVE DASH character",
"version": "0.3.1",
"publisher": "yutotnh",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"icon": "doc/icon.png",
"bugs": {
"url": "https://github.com/yutotnh/wave-dash-unify/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yutotnh/wave-dash-unify.git"
},
"homepage": "https://github.com/yutotnh/wave-dash-unify",
"license": "SEE LICENSE IN LICENSE",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"category": "Wave Dash Unify",
"command": "waveDashUnify.enableConvert",
"title": "%waveDashUnify.enableConvert.title%"
},
{
"category": "Wave Dash Unify",
"command": "waveDashUnify.disableConvert",
"title": "%waveDashUnify.disableConvert.title%"
}
],
"configuration": {
"title": "Wave Dash Unify",
"properties": {
"waveDashUnify.enableConvert": {
"type": "boolean",
"default": true,
"description": "%waveDashUnify.enableConvert.description%"
},
"waveDashUnify.fullwidthTildeToWaveDash": {
"type": "boolean",
"default": true,
"description": "%waveDashUnify.fullwidthTildeToWaveDash.description%"
},
"waveDashUnify.numeroSignToNumeroSign": {
"type": "boolean",
"default": true,
"description": "%waveDashUnify.numeroSignToNumeroSign.description%"
},
"waveDashUnify.statusBarFormat": {
"type": "string",
"default": "${statusIcon} ~: ${waveDashAndFullwidthTildeCount}, №: ${numeroSignCount}",
"markdownDescription": "%waveDashUnify.statusBarFormat.markdownDescription%"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"vscode:publish": "vsce publish",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"format": "prettier --write .",
"test": "node ./out/test/runTest.js",
"spellcheck": "cspell ."
},
"devDependencies": {
"@types/encoding-japanese": "^2.2.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.78.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.2",
"cspell": "^8.17.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"glob": "^8.1.0",
"mocha": "^11.1.0",
"prettier": "^3.5.0",
"tmp": "^0.2.3",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"encoding-japanese": "^2.2.0"
}
}