-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.85 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
{
"name": "rjz-npm-script-run",
"displayName": "Powerful NPM Run",
"description": "Run All NPM scripts from the command palette",
"icon": "public/logo.png",
"publisher": "RuanJiazhen",
"version": "0.9.1",
"repository": {
"type": "git",
"url": "https://github.com/RJiazhen/vscode-powerful-npm-run"
},
"engines": {
"vscode": "^1.71.0",
"node": "^20.11.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:rjz-npm-run.runNpmScriptCurrentTerminal",
"onCommand:rjz-npm-run.runNpmScriptNewTerminal",
"onCommand:rjz-npm-run.npmInstall",
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "rjz-npm-run.runNpmScriptCurrentTerminal",
"title": "npm run (Last Used Terminal)"
},
{
"command": "rjz-npm-run.runNpmScriptNewTerminal",
"title": "npm run (New Terminal)"
},
{
"command": "rjz-npm-run.npmInstall",
"title": "npm install"
}
],
"configuration": {
"title": "Powerful NPM Run",
"properties": {
"powerful-npm-run.defaultNodeVersion": {
"type": "string",
"default": "",
"description": "The default node version used. Example: 16.14.0"
},
"powerful-npm-run.singleLineCommand": {
"type": "string",
"enum": [
"only in new terminal",
"off",
"always use ;",
"always use &&"
],
"default": "only in new terminal",
"description": "Whether to run the command in a single line when run in active terminal."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"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": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"publish": "pnpm vsce publish --no-dependencies",
"prepare": "husky"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.71.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"@vscode/vsce": "^3.1.0",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"volta": {
"node": "20.17.0",
"pnpm": "7.33.7"
}
}