-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.22 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
{
"publisher": "antfu",
"name": "auto-npx",
"displayName": "Auto NPX",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"description": "Auto resolving local Node.js binaries in VS Code terminal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vscode-auto-npx.git"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"icon": "res/logo.png",
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onStartupFinished",
"workspaceContains:node_modules/"
],
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "Auto NPX",
"properties": {}
}
},
"scripts": {
"lint": "eslint .",
"build": "tsup src/extension.ts --external vscode",
"dev": "nr build --watch src",
"vscode:prepublish": "npm run build",
"release": "bumpp && vsce publish --no-dependencies"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.2",
"@antfu/ni": "^0.22.0",
"@types/node": "^20.14.10",
"@types/vscode": "^1.60.0",
"@vscode/vsce": "^2.29.0",
"bumpp": "^9.4.1",
"eslint": "^9.7.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}