notebook/buildutils/package.json

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

43 lines
994 B
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.0rc1 SHA256 hashes: jupyter-notebook-application-7.0.0-rc.1.tgz: e15112f73d6157d0e4a0e3b746aaf2748de5a269f5c6d62c1ade024de3e41bc2 jupyter-notebook-application-extension-7.0.0-rc.1.tgz: ddb45b4ed6987a710dcf990a20a58e2c3e74746bb8a86471a1cc7d76e74552b9 jupyter-notebook-console-extension-7.0.0-rc.1.tgz: dfa112e5e168773bfe15e35654269175bf9d177b05d172c93b79518ef749ac51 jupyter-notebook-docmanager-extension-7.0.0-rc.1.tgz: b799da3ff729f33eba46d8e55b1d938286ed1f3e36b954e295c643809f3432da jupyter-notebook-documentsearch-extension-7.0.0-rc.1.tgz: b5877fdc59168d885c85d9ee534d364e4925e77ae79cddfef660931ab2cc35f9 jupyter-notebook-help-extension-7.0.0-rc.1.tgz: 562ad17ae13d8855a5a806f15e62e178963344f724d28884f1a0eded112200e7 jupyter-notebook-lab-extension-7.0.0-rc.1.tgz: 6c37cf68964de07023da4765c71fd5ac8941fcc8d84e5a393c68cd973dfb70eb jupyter-notebook-notebook-extension-7.0.0-rc.1.tgz: d2fc7df877eb5f540e736b9b565a824f039d117a6f5bb04356c0790238276eb7 jupyter-notebook-terminal-extension-7.0.0-rc.1.tgz: ffca61992ae08d781f8f4cb00bd919125c77949a1424764ef70dd5e107f5b138 jupyter-notebook-tree-7.0.0-rc.1.tgz: f2f0dce9b15c822105873d2ba34519a6bb92a936347530963f6adc1689d44a7c jupyter-notebook-tree-extension-7.0.0-rc.1.tgz: 97efab3c76f8812c250b260c6d2a1e76f26ecbbd2f5bf113e45ae8579041a7f1 jupyter-notebook-ui-components-7.0.0-rc.1.tgz: f6c0ff3d1808187b077a82e19abc303b6a525013dbacca91b66cc5e4ce32ba81 notebook-7.0.0rc1-py3-none-any.whl: 01256885d00c02caa532147c4308d3e298298b055a1b454847b57b9506a5afe7 notebook-7.0.0rc1.tar.gz: b59cfec959611a0f0f3fdcb1bab9143bae257907947769636d396fee133ebb1e
2023-06-22 17:11:41 +08:00
"version": "7.0.0-rc.1",
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",
"watch": "tsc -w --listEmittedFiles"
},
"dependencies": {
"@jupyterlab/buildutils": "^4.0.2",
2021-01-19 17:46:01 +08:00
"commander": "^6.2.0",
"fs-extra": "^9.1.0",
"typescript": "~5.0.2"
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",
2022-09-29 17:43:21 +08:00
"rimraf": "^3.0.2"
2021-01-19 16:35:54 +08:00
}
}