-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.53 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
{
"name": "vscode-barrelify",
"displayName": "Barrelify",
"description": "Streamlines project's organization by automatically generating barrel files",
"version": "1.3.1",
"license": "MIT",
"private": true,
"publisher": "mumincelal",
"homepage": "https://github.com/mumincelal/vscode-barrelify",
"repository": {
"type": "git",
"url": "https://github.com/mumincelal/vscode-barrelify.git"
},
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"keywords": [],
"icon": "images/icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "barrelify.executeStepwiseBarrel",
"category": "Barrelify",
"title": "Execute Barrel File"
},
{
"command": "barrelify.executeWatcherBarrel",
"category": "Barrelify",
"title": "Execute Barrel File (Watch)"
},
{
"command": "barrelify.executeBarrel",
"category": "Barrelify",
"title": "Execute Barrel File"
}
],
"menus": {
"commandPalette": [
{
"command": "barrelify.executeBarrel",
"when": "false"
}
],
"explorer/context": [
{
"command": "barrelify.executeBarrel",
"group": "2_barrelify"
}
]
}
},
"scripts": {
"vscode:prepublish": "rimraf out && tsc -p ./",
"build": "rimraf out && tsc -p ./",
"lint": "eslint {src,test}/**/*.ts --fix",
"format": "prettier --write {src,test}/**/*.ts",
"watch": "tsc -watch -p ./",
"pretest": "tsc -p tsconfig.test.json",
"test": "node ./out/test/runTest.js",
"clean": "rimraf out",
"knip": "knip",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.2",
"@types/mocha": "^10.0.6",
"@types/node": "20.11.20",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.24.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.3.10",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.2",
"semantic-release-vsce": "^5.6.4",
"typescript": "^5.3.3"
}
}