@graphistry/node-api
Version:
Graphistry API client for use with node.js
82 lines (81 loc) • 3.39 kB
JSON
{
"name": "@graphistry/node-api",
"version": "5.1.8",
"repository": {
"type": "git",
"url": "git+https://github.com/graphistry/graphistry-js.git"
},
"homepage": "https://github.com/graphistry/graphistry-js",
"private": false,
"description": "Graphistry API client for use with node.js",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"docs",
"src",
"README.md"
],
"scripts": {
"build": "npm run clean:build && npm run build:package && npm run build:tsc && npm run docs:build",
"build:package": "npm run build:package:esm && npm run build:package:cjs",
"build:package:cjs": "mkdir -p dist/cjs && jq '.type=\"commonjs\"' package.template.json > dist/cjs/package.json",
"build:package:esm": "mkdir -p dist && jq '.type=\"module\"' package.template.json > dist/package.json",
"build:tsc": "npm run build:tsc:esm && npm run build:tsc:cjs",
"build:tsc:esm": "npx tsc",
"build:tsc:cjs": "npx tsc -p tsconfig.cjs.json",
"watch": "npx tsc --watch",
"docs:build": "npx typedoc --sort static-first --sort visibility --sort alphabetical --includeVersion --hideGenerator --name '@graphistry/node-api' --sourcefile-url-prefix 'https://github.com/graphistry/graphistry-js/blob/master/projects/node-api/src/' --out docs --cleanOutputDir false src/index.ts",
"docs:watch": "npx typedoc --sort static-first --sort visibility --sort alphabetical --includeVersion --hideGenerator --name '@graphistry/node-api' --sourcefile-url-prefix 'https://github.com/graphistry/graphistry-js/blob/master/projects/node-api/src/' --out docs --cleanOutputDir false src/index.ts --watch",
"docs:start": "npx live-server docs",
"docs:test": "npx typedoc --treatWarningsAsErrors --emit none --listInvalidSymbolLinks --sort static-first --sort visibility --sort alphabetical --includeVersion --hideGenerator --name '@graphistry/node-api' --sourcefile-url-prefix 'https://github.com/graphistry/graphistry-js/blob/master/projects/node-api/src/' src/index.ts",
"lock:fix": "npm i --package-lock-only",
"test": "npm run lint && npm run docs:test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "npm run clean:install && npm run clean:build && npm run clean:docs",
"clean:install": "rimraf node_modules",
"clean:build": "rimraf dist",
"clean:docs": "rimraf docs"
},
"keywords": [
"Graphistry",
"node",
"graph",
"GPU",
"Arrow",
"dataframe",
"RAPIDS",
"visualization"
],
"author": "Graphistry, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/graphistry/graphistry-js/issues"
},
"devDependencies": {
"@compodoc/live-server": "^1.2.3",
"@tsconfig/node16": "^1.0.2",
"@types/debug": "^4.1.7",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"nlfurniss-typedoc-plugin-sourcefile-url": "^2.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"dependencies": {
"@graphistry/js-upload-api": "^5.1.8",
"node-fetch-commonjs": "^3.2.4"
},
"gitHead": "904f68a696189bdbc2735b5ae61cf2f027ad7f1e"
}