-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SHA256 hashes: jupyterlite-javascript-kernel-0.3.0.tgz: 56a0505e0c2f25cf2c70e5914fc5206cc0b37e938851945eb572fa5fd85a4c3c jupyterlite-javascript-kernel-extension-0.3.0.tgz: 08f3412ea17b61306f2e8517d20359e3c0b1cbafc74569818841e84c62e3363c jupyterlite_javascript_kernel-0.3.0-py3-none-any.whl: 7753c172d3c8bd50d7e7c05d1b667c3fa5566f90d38bf1bdd160f9752e1746b7 jupyterlite_javascript_kernel-0.3.0.tar.gz: 39870efb4cdfe669b99552b4ad21a82f575691e4fdaf77b33bef04ec230889ff
- Loading branch information
Showing
5 changed files
with
144 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"npmClient": "jlpm", | ||
"version": "0.3.0-alpha.1", | ||
"version": "0.3.0", | ||
"useWorkspaces": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,129 @@ | ||
{ | ||
"name": "@jupyterlite/javascript-kernel-root", | ||
"private": true, | ||
"version": "0.3.0-a1", | ||
"description": "A JavaScript kernel for JupyterLite", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
"name": "@jupyterlite/javascript-kernel-root", | ||
"private": true, | ||
"version": "0.3.0", | ||
"description": "A JavaScript kernel for JupyterLite", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/jupyterlite/javascript-kernel", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlite/javascript-kernel/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": "JupyterLite Contributors", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlite/javascript-kernel.git" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
"packages/*" | ||
] | ||
}, | ||
"scripts": { | ||
"build": "lerna run build", | ||
"build:prod": "lerna run build:prod", | ||
"build:test": "lerna run build:test", | ||
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes", | ||
"clean": "lerna run clean", | ||
"install": "lerna bootstrap", | ||
"install:dev": "yarn run build:prod && yarn run develop", | ||
"install:extension": "jupyter labextension develop --overwrite .", | ||
"eslint": "eslint . --ext .ts,.tsx --fix", | ||
"eslint:check": "eslint . --ext .ts,.tsx", | ||
"lint": "yarn run eslint && yarn run prettier", | ||
"lint:check": "yarn run eslint:check && yarn run prettier:check", | ||
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"publish": "yarn run clean && yarn run build && lerna publish", | ||
"test": "lerna run test", | ||
"watch": "lerna run watch" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6", | ||
"@typescript-eslint/parser": "^6", | ||
"eslint": "^8", | ||
"eslint-config-prettier": "^8", | ||
"eslint-plugin-prettier": "^5", | ||
"lerna": "^6.4.1", | ||
"prettier": "^3", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"eslintIgnore": [ | ||
"node_modules", | ||
"dist", | ||
"coverage", | ||
"**/*.d.ts" | ||
], | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"homepage": "https://github.com/jupyterlite/javascript-kernel", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlite/javascript-kernel/issues" | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.eslint.json", | ||
"sourceType": "module" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": "JupyterLite Contributors", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlite/javascript-kernel.git" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
"packages/*" | ||
] | ||
}, | ||
"scripts": { | ||
"build": "lerna run build", | ||
"build:prod": "lerna run build:prod", | ||
"build:test": "lerna run build:test", | ||
"bump:js:version": "lerna version --no-push --force-publish --no-git-tag-version --yes", | ||
"clean": "lerna run clean", | ||
"install": "lerna bootstrap", | ||
"install:dev": "yarn run build:prod && yarn run develop", | ||
"install:extension": "jupyter labextension develop --overwrite .", | ||
"eslint": "eslint . --ext .ts,.tsx --fix", | ||
"eslint:check": "eslint . --ext .ts,.tsx", | ||
"lint": "yarn run eslint && yarn run prettier", | ||
"lint:check": "yarn run eslint:check && yarn run prettier:check", | ||
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"publish": "yarn run clean && yarn run build && lerna publish", | ||
"test": "lerna run test", | ||
"watch": "lerna run watch" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6", | ||
"@typescript-eslint/parser": "^6", | ||
"eslint": "^8", | ||
"eslint-config-prettier": "^8", | ||
"eslint-plugin-prettier": "^5", | ||
"lerna": "^6.4.1", | ||
"prettier": "^3", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"eslintIgnore": [ | ||
"node_modules", | ||
"dist", | ||
"coverage", | ||
"**/*.d.ts" | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.eslint.json", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
"selector": "interface", | ||
"format": [ | ||
"PascalCase" | ||
], | ||
"custom": { | ||
"regex": "^I[A-Z]", | ||
"match": true | ||
} | ||
} | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"args": "none" | ||
} | ||
], | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"@typescript-eslint/quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": false | ||
} | ||
], | ||
"curly": [ | ||
"error", | ||
"all" | ||
], | ||
"eqeqeq": "error", | ||
"prefer-arrow-callback": "error" | ||
"rules": { | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
"selector": "interface", | ||
"format": [ | ||
"PascalCase" | ||
], | ||
"custom": { | ||
"regex": "^I[A-Z]", | ||
"match": true | ||
} | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"overrides": [ | ||
{ | ||
"files": "package.json", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"args": "none" | ||
} | ||
], | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"@typescript-eslint/quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": false | ||
} | ||
], | ||
"curly": [ | ||
"error", | ||
"all" | ||
], | ||
"eqeqeq": "error", | ||
"prefer-arrow-callback": "error" | ||
} | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"overrides": [ | ||
{ | ||
"files": "package.json", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters