File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,7 @@ package-lock.json
9
9
node.json
10
10
yarn-error.log
11
11
12
+ .yarnrc
13
+
12
14
venv
13
15
dist *
Original file line number Diff line number Diff line change 3
3
"version" : " 0.2.0" ,
4
4
"description" : " Example of a starknet wallet implemented with starknetjs" ,
5
5
"main" : " index.js" ,
6
+ "bin" : {
7
+ "starknet-cli-wallet" : " ./dist/src/index.js"
8
+ },
6
9
"types" : " ./dist/types/index.d.ts" ,
7
10
"scripts" : {
8
11
"clean" : " rm -rf dist" ,
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env node
2
+
1
3
import { ensureEnvVar } from "./util" ;
2
4
import { program } from "commander" ;
3
5
import { getProvider } from "./ProviderConfig" ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
"module" : " commonjs" ,
5
5
"strict" : true ,
6
6
"esModuleInterop" : true ,
7
- "outDir" : " dist" ,
7
+ "outDir" : " ./ dist" ,
8
8
"resolveJsonModule" : true
9
9
},
10
- "include" : [" ./test" ]
10
+ "include" : [" ./src/index.ts " , " ./ test" ]
11
11
}
You can’t perform that action at this time.
0 commit comments