Skip to content

Commit 2725d7f

Browse files
committed
Changed project name and published to npm registry under new name. Old NPM registry depreciated and will be removed very soon
1 parent 6b4c24b commit 2725d7f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@jspython-dev/jspython-cli",
2+
"name": "jspython-cli",
33
"version": "0.0.2",
44
"description": "CLI for jspython. Allows you to run jspython (*.jspy) files",
55
"main": "src/index.ts",
@@ -28,8 +28,8 @@
2828
},
2929
"homepage": "https://github.com/jspython-dev/jspython-cli#readme",
3030
"dependencies": {
31-
"@jspython-dev/jspython": "^0.0.3",
32-
"arg": "^4.1.1"
31+
"arg": "^4.1.1",
32+
"jspython-interpreter": "0.0.3"
3333
},
3434
"devDependencies": {
3535
"rollup": "^1.26.5",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import arg from 'arg';
22
import fs from 'fs';
3-
import { jsPython, Interpreter, PackageLoader } from '@jspython-dev/jspython';
3+
import { jsPython, Interpreter, PackageLoader } from 'jspython-interpreter';
44

55
const pkg = require('../package.json');
66

0 commit comments

Comments
 (0)