-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Defaults to source when protocol not support vineyard io stream (#311)
- Loading branch information
1 parent
40a8229
commit 391a96c
Showing
2 changed files
with
10 additions
and
12 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 @@ | ||
{ | ||
"name": "graphscope-jupyter", | ||
"name": "@graphscope/graphscope-jupyter", | ||
"version": "0.4.0", | ||
"description": "A GraphScope Jupyter Extension, including Graphin Widget, etc.", | ||
"keywords": [ | ||
|
@@ -22,15 +22,12 @@ | |
"url": "https://github.com/antvis/G6/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "baizn", | ||
"email": "[email protected]" | ||
}, | ||
"author": "baizn <[email protected]>", | ||
"main": "src/index.ts", | ||
"types": "./lib/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/antvis/G6" | ||
"url": "git+https://github.com/antvis/G6.git" | ||
}, | ||
"scripts": { | ||
"build": "npm run build:lib && npm run build:nbextension", | ||
|
@@ -113,5 +110,9 @@ | |
}, | ||
"prettier": { | ||
"singleQuote": true | ||
}, | ||
"directories": { | ||
"doc": "docs", | ||
"lib": "lib" | ||
} | ||
} |