Skip to content

Commit a869384

Browse files
committed
feat: init
0 parents  commit a869384

File tree

13 files changed

+5948
-0
lines changed

13 files changed

+5948
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
dist
4+
src/generated-meta.ts
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw?
23+
*.vsix

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx nano-staged

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": [
10+
"--extensionDevelopmentPath=${workspaceFolder}"
11+
],
12+
"outFiles": [
13+
"${workspaceFolder}/dist/**/*.js"
14+
]
15+
}
16+
]
17+
}

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 vida xie
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<h1 align="center">npmx <sup>VS Code</sup></h1>
2+
3+
<p align="center">
4+
<a href="https://marketplace.visualstudio.com/items?itemName=9romise.npmx">
5+
<img src="https://img.shields.io/visual-studio-marketplace/v/9romise.npmx?color=blue&label=VS%20Code%20Marketplace" alt="VS Code Marketplace">
6+
</a>
7+
<a href="https://kermanx.github.io/reactive-vscode/" target="__blank"><img src="https://img.shields.io/badge/made_with-reactive--vscode-%23007ACC?style=flat&labelColor=%23229863" alt="Made with reactive-vscode" /></a>
8+
</p>
9+
10+
## Configs
11+
12+
<!-- configs -->
13+
14+
**No data**
15+
16+
<!-- configs -->
17+
## License
18+
19+
[MIT](./LICENSE) License &copy; 2026-PRESENT [Vida Xie](https://github.com/9romise)

eslint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { defineConfig } from '@vida0905/eslint-config'
2+
3+
export default defineConfig()

package.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"publisher": "9romise",
3+
"name": "vscode-npmx",
4+
"displayName": "npmx",
5+
"type": "module",
6+
"version": "0.0.1",
7+
"packageManager": "pnpm@10.28.2",
8+
"author": {
9+
"name": "Vida Xie",
10+
"email": "vida_2020@163.com",
11+
"url": "https://github.com/9romise"
12+
},
13+
"license": "MIT",
14+
"homepage": "https://github.com/9romise/vscode-npmx#readme",
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/9romise/vscode-npmx.git"
18+
},
19+
"bugs": {
20+
"url": "https://github.com/9romise/vscode-npmx/issues"
21+
},
22+
"keywords": [
23+
"npmx"
24+
],
25+
"categories": [
26+
"Other"
27+
],
28+
"main": "./dist/index.mjs",
29+
"icon": "res/icon.svg",
30+
"files": [
31+
"LICENSE.md",
32+
"dist/*",
33+
"res/*"
34+
],
35+
"engines": {
36+
"vscode": "^1.101.0"
37+
},
38+
"activationEvents": [
39+
"onStartupFinished"
40+
],
41+
"scripts": {
42+
"dev": "tsdown --watch",
43+
"build": "tsdown",
44+
"update": "vscode-ext-gen --scope npmx",
45+
"check": "eslint . && tsc --noEmit",
46+
"vscode:prepublish": "npm run build",
47+
"publish": "vsce publish --no-dependencies",
48+
"pack": "vsce package --no-dependencies"
49+
},
50+
"devDependencies": {
51+
"@types/node": "^25.1.0",
52+
"@types/vscode": "1.101.0",
53+
"@vida0905/eslint-config": "^2.9.0",
54+
"@vscode/vsce": "^3.7.1",
55+
"eslint": "^9.39.2",
56+
"husky": "^9.1.7",
57+
"nano-staged": "^0.9.0",
58+
"reactive-vscode": "^0.4.1",
59+
"tsdown": "^0.20.1",
60+
"typescript": "^5.9.3",
61+
"vscode-ext-gen": "1.3.0"
62+
},
63+
"nano-staged": {
64+
"*": "eslint --fix"
65+
}
66+
}

0 commit comments

Comments
 (0)