We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b4c24b commit 2725d7fCopy full SHA for 2725d7f
package.json
@@ -1,5 +1,5 @@
1
{
2
- "name": "@jspython-dev/jspython-cli",
+ "name": "jspython-cli",
3
"version": "0.0.2",
4
"description": "CLI for jspython. Allows you to run jspython (*.jspy) files",
5
"main": "src/index.ts",
@@ -28,8 +28,8 @@
28
},
29
"homepage": "https://github.com/jspython-dev/jspython-cli#readme",
30
"dependencies": {
31
- "@jspython-dev/jspython": "^0.0.3",
32
- "arg": "^4.1.1"
+ "arg": "^4.1.1",
+ "jspython-interpreter": "0.0.3"
33
34
"devDependencies": {
35
"rollup": "^1.26.5",
src/index.ts
@@ -1,6 +1,6 @@
import arg from 'arg';
import fs from 'fs';
-import { jsPython, Interpreter, PackageLoader } from '@jspython-dev/jspython';
+import { jsPython, Interpreter, PackageLoader } from 'jspython-interpreter';
const pkg = require('../package.json');
6
0 commit comments