notebook/buildutils/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.0 KiB
JSON
Raw Normal View History

2021-01-19 16:35:54 +08:00
{
2022-01-18 20:18:12 +08:00
"name": "@jupyter-notebook/buildutils",
Publish 7.0.0a5 SHA256 hashes: jupyter-notebook-application-7.0.0-alpha.5.tgz: aa4c1531d357d670f300f197b4ae1624d2a534e454a4bf9a2ac27d7ff768b4d0 jupyter-notebook-application-extension-7.0.0-alpha.5.tgz: 2c80f2182f6456f181903acf2a9d4c44bd37cd48e9b3786b02e3faee725415b3 jupyter-notebook-console-extension-7.0.0-alpha.5.tgz: f32630c650da09c9e3d0f7cf631479c5a2263f20e5bfad447acca5fed53334f3 jupyter-notebook-docmanager-extension-7.0.0-alpha.5.tgz: 329692008393257decc57ae3389f02a96bb452fbaf793c5bcd9f3419de81c473 jupyter-notebook-documentsearch-extension-7.0.0-alpha.5.tgz: 4c8c704407924e577a3a67e5f552dc7ae7d1c62e5c28d566284a49dba484da54 jupyter-notebook-help-extension-7.0.0-alpha.5.tgz: 4785a77cb86c2faeae1fda4b6a1a0d0bced61f3085a0b4e92646953073cf3511 jupyter-notebook-lab-extension-7.0.0-alpha.5.tgz: e0ecbcc914712f5140b671e7e381e746296f955f4ab523b590003b9e7679fe1a jupyter-notebook-notebook-extension-7.0.0-alpha.5.tgz: 5b0b33c817ca292c92bf955bc990b22a5137ef6a42c1ff5e535c682dfdc0ece1 jupyter-notebook-terminal-extension-7.0.0-alpha.5.tgz: 2bc9e15170ab1277784333accb8db4a077044a53653f341484c9b5ec1746f35c jupyter-notebook-tree-extension-7.0.0-alpha.5.tgz: bbcc9050d0501edc47af3d9d6b28d941a60a08ff0fcefc38441ce0b274548ee8 jupyter-notebook-ui-components-7.0.0-alpha.5.tgz: 67bf33d48e49efb7d8b989cd4ffa5764de639c67bd2b6e17c7f12f5b50197638 notebook-7.0.0a5-py3-none-any.whl: e5e9768d8760d828df2e57ce37fa44a408021572bde74273a095cd1ce564eed8 notebook-7.0.0a5.tar.gz: 26f62bcc43e3dc692f9d12d5fe6a0e183d8e5d7176db1d53b00a13f872a9f9da
2022-06-14 10:23:33 +08:00
"version": "7.0.0-alpha.5",
2021-01-19 16:35:54 +08:00
"private": true,
2022-01-18 20:18:12 +08:00
"description": "Jupyter Notebook - Build Utilities",
2022-01-18 23:43:12 +08:00
"homepage": "https://github.com/jupyter/notebook",
2021-01-19 16:35:54 +08:00
"bugs": {
2022-01-18 23:43:12 +08:00
"url": "https://github.com/jupyter/notebook/issues"
2021-01-19 16:35:54 +08:00
},
"repository": {
"type": "git",
2022-01-18 23:43:12 +08:00
"url": "https://github.com/jupyter/notebook.git"
2021-01-19 16:35:54 +08:00
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepublishOnly": "npm run build",
"watch": "tsc -w --listEmittedFiles"
},
"dependencies": {
2022-09-29 00:54:43 +08:00
"@jupyterlab/buildutils": "^4.0.0-alpha.14",
2021-01-19 17:46:01 +08:00
"commander": "^6.2.0",
"fs-extra": "^9.1.0",
2022-04-05 19:48:44 +08:00
"typescript": "~4.6.3"
2021-01-19 16:35:54 +08:00
},
"devDependencies": {
"@types/fs-extra": "^9.0.10",
2021-01-19 16:35:54 +08:00
"@types/node": "^14.6.1",
"rimraf": "~3.0.0"
}
}