File tree Expand file tree Collapse file tree 6 files changed +46
-21
lines changed Expand file tree Collapse file tree 6 files changed +46
-21
lines changed Original file line number Diff line number Diff line change 11{
2- "$schema" :
" https://unpkg.com/@changesets/[email protected] /schema.json" ,
3- "changelog" : " @changesets/cli/changelog" ,
4- "commit" : false ,
5- "fixed" : [],
6- "linked" : [],
7- "access" : " restricted " ,
8- "baseBranch" : " main" ,
9- "updateInternalDependencies" : " patch" ,
10- "ignore" : []
2+ "$schema" :
" https://unpkg.com/@changesets/[email protected] /schema.json" ,
3+ "changelog" : " @changesets/cli/changelog" ,
4+ "commit" : false ,
5+ "fixed" : [],
6+ "linked" : [],
7+ "access" : " public " ,
8+ "baseBranch" : " main" ,
9+ "updateInternalDependencies" : " patch" ,
10+ "ignore" : []
1111}
Original file line number Diff line number Diff line change 11{
2- "eslint.workingDirectories" : [
3- {
4- "mode" : " auto"
5- }
6- ]
2+ "eslint.workingDirectories" : [
3+ {
4+ "mode" : " auto"
5+ }
6+ ],
7+ "conventionalCommits.scopes" : [" Setup" , " Release" ]
78}
Original file line number Diff line number Diff line change 11# simple-remote-ssh
22
3+ ## 0.1.2
4+
5+ ### Patch Changes
6+
7+ - github url update and config fix
8+
39## 0.1.1
410
511### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " simple-remote-ssh" ,
3- "version" : " 0.1.1 " ,
3+ "version" : " 0.1.2 " ,
44 "description" : " Simple and convenient SSH connection CLI tool" ,
55 "author" :
" minchodang <[email protected] >" ,
66 "repository" : {
77 "type" : " git" ,
8- "url" : " https://github.com/kangminsu /simple_remote_ssh.git" ,
8+ "url" : " https://github.com/minchodang /simple_remote_ssh.git" ,
99 "directory" : " packages/cli"
1010 },
11- "homepage" : " https://github.com/kangminsu /simple_remote_ssh#readme" ,
11+ "homepage" : " https://github.com/minchodang /simple_remote_ssh#readme" ,
1212 "bugs" : {
13- "url" : " https://github.com/kangminsu /simple_remote_ssh/issues"
13+ "url" : " https://github.com/minchodang /simple_remote_ssh/issues"
1414 },
1515 "type" : " module" ,
1616 "main" : " dist/index.js" ,
17+ "types" : " dist/index.d.ts" ,
1718 "bin" : {
1819 "simple-ssh" : " dist/cli.js"
1920 },
5152 "registry" : " https://registry.npmjs.org/"
5253 },
5354 "files" : [
54- " dist" ,
55+ " dist/**/*.js" ,
56+ " dist/**/*.d.ts" ,
57+ " dist/**/*.d.ts.map" ,
5558 " README.md" ,
5659 " CHANGELOG.md" ,
5760 " LICENSE"
58- ]
61+ ],
62+ "license" : " MIT"
5963}
Original file line number Diff line number Diff line change 1+ // Export types for TypeScript users
2+ export * from './types/ssh.js' ;
3+
4+ // Export utility functions
5+ export * from './utils/config.js' ;
6+
7+ // Export command functions (for programmatic usage)
8+ export { connectCommand } from './commands/connect.js' ;
9+ export { listCommand } from './commands/list.js' ;
10+ export { addCommand } from './commands/add.js' ;
11+ export { editCommand } from './commands/edit.js' ;
12+ export { removeCommand } from './commands/remove.js' ;
Original file line number Diff line number Diff line change 88 "moduleResolution" : " node" ,
99 "allowSyntheticDefaultImports" : true ,
1010 "esModuleInterop" : true ,
11- "resolveJsonModule" : true
11+ "resolveJsonModule" : true ,
12+ "declaration" : true ,
13+ "declarationMap" : true
1214 },
1315 "include" : [" src/**/*" ],
1416 "exclude" : [" node_modules" , " dist" ]
You can’t perform that action at this time.
0 commit comments