-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.27 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": "vsx0",
"displayName": "vsx0",
"publisher": "x0",
"author": {
"name": "MeerBiene",
"email": "[email protected]"
},
"description": "Who needs a frontend when you can have a VSCode Extension",
"version": "1.0.1",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/x0tf/vsx0"
},
"activationEvents": [
"onCommand:vsx0.paste"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "vsx0",
"properties": {
"vsx0.copyLinkToClipboard": {
"type": "boolean",
"description": "Toggle whether you want to see the link for the paste as a notification message or if you want it copied diretly to your clipboard",
"default": true
}
},
"default": true
},
"commands": [
{
"command": "vsx0.paste",
"title": "Paste",
"category": "x0"
}
]
},
"scripts": {
"publish": "vsce package",
"release": "standard-version",
"commit": "cz",
"vscode:prepublish": "npm run package",
"build": "npm run compile",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run lint",
"ms:lint": "eslint src --ext ts",
"lint": "eslint **/**/*.{ts,tsx,cjs}",
"lint:fix": "eslint **/**/*.{ts,tsx,cjs} --fix",
"test": "node ./src/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.0",
"@types/vscode": "^1.58.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"standard-version": "^9.3.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"vscode-test": "^1.5.2",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@aero/centra": "^1.0.6",
"x0js": "^2.1.0"
}
}