File tree 2 files changed +4
-4
lines changed
Filter options
2 files changed +4
-4
lines changed
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " @jspython-dev/ jspython-cli" ,
2
+ "name" : " jspython-cli" ,
3
3
"version" : " 0.0.2" ,
4
4
"description" : " CLI for jspython. Allows you to run jspython (*.jspy) files" ,
5
5
"main" : " src/index.ts" ,
28
28
},
29
29
"homepage" : " https://github.com/jspython-dev/jspython-cli#readme" ,
30
30
"dependencies" : {
31
- "@jspython-dev/jspython " : " ^0.0.3 " ,
32
- "arg " : " ^4.1.1 "
31
+ "arg " : " ^4.1.1 " ,
32
+ "jspython-interpreter " : " 0.0.3 "
33
33
},
34
34
"devDependencies" : {
35
35
"rollup" : " ^1.26.5" ,
Original file line number Diff line number Diff line change 1
1
import arg from 'arg' ;
2
2
import fs from 'fs' ;
3
- import { jsPython , Interpreter , PackageLoader } from '@ jspython-dev/jspython ' ;
3
+ import { jsPython , Interpreter , PackageLoader } from 'jspython-interpreter ' ;
4
4
5
5
const pkg = require ( '../package.json' ) ;
6
6
You can’t perform that action at this time.
0 commit comments