@fanoutio/grip
Version:
GRIP Interface Library
87 lines (86 loc) • 2.05 kB
JSON
{
"name": "@fanoutio/grip",
"version": "4.3.1",
"type": "module",
"author": "Fastly <oss@fastly.com>",
"description": "GRIP Interface Library",
"contributors": [
{
"name": "Katsuyuki Omuro",
"email": "komuro@fastly.com"
},
{
"name": "Konstantin Bokarius",
"email": "kon@fanout.io"
}
],
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"node": {
"types": "./build/index-node.d.ts",
"default": "./build/index-node.js"
},
"default": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"./node": {
"types": "./build/node/index.d.ts",
"default": "./build/node/index.js"
},
"./fastly-fanout": {
"types": "./build/fastly-fanout/index.d.ts",
"default": "./build/fastly-fanout/index.js"
}
},
"files": [
"build/**/*",
"types/**/*"
],
"scripts": {
"prepack": "npm run build",
"build": "npm run test && npm run build-package",
"build-package": "npm run build-package:clean && npm run build-package:compile",
"build-package:clean": "rimraf build",
"build-package:compile": "tsc --build tsconfig.build.json",
"coverage": "c8 npm test",
"test": "npm run test:unit",
"test:unit": "glob -c \"node --loader ts-node/esm --no-warnings=ExperimentalWarning --test\" \"./test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/fanout/js-grip.git"
},
"readmeFilename": "README.md",
"keywords": [
"grip",
"fastly",
"fanout",
"fanoutpub",
"realtime",
"push",
"pubcontrol",
"publish"
],
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^20",
"c8": "^8.0.1",
"glob": "^10.3.10",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"debug": "^4.3.4",
"jose": "^5.2.2",
"jspack": "0.0.4"
},
"engines": {
"node": ">= 16"
}
}