shrub/pkg/npm/http-api/package.json

62 lines
1.7 KiB
JSON
Raw Normal View History

2021-01-27 08:45:18 +03:00
{
"name": "@urbit/http-api",
"version": "1.1.0",
"license": "MIT",
"description": "Library to interact with an Urbit ship over HTTP",
2021-02-17 05:22:07 +03:00
"repository": {
"type": "git",
2021-02-15 01:15:43 +03:00
"url": "ssh://git@github.com/urbit/urbit.git",
"directory": "pkg/npm/http-api"
},
2021-02-25 06:58:32 +03:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2021-01-27 08:45:18 +03:00
"files": [
"dist",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2021-02-25 06:58:32 +03:00
"build": "npm run clean && tsc -p tsconfig.json",
2021-01-27 08:45:18 +03:00
"clean": "rm -rf dist/*"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
2021-02-15 01:15:43 +03:00
"author": "",
2021-01-27 08:45:18 +03:00
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
2021-02-25 06:58:32 +03:00
"@types/browser-or-node": "^1.2.0",
2021-01-27 08:45:18 +03:00
"@types/eventsource": "^1.1.5",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"tslib": "^2.0.3",
"typescript": "^3.9.7",
2021-02-25 06:58:32 +03:00
"util": "^0.12.3",
2021-01-27 08:45:18 +03:00
"webpack": "^5.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
2021-02-25 06:58:32 +03:00
"@microsoft/fetch-event-source": "^2.0.0",
"@urbit/api": "file:../api",
2021-01-27 08:45:18 +03:00
"browser-or-node": "^1.3.0",
"browserify-zlib": "^0.2.0",
2021-02-25 06:58:32 +03:00
"buffer": "^6.0.3",
2021-01-27 08:45:18 +03:00
"node-fetch": "^2.6.1",
"stream-browserify": "^3.0.0",
2021-02-25 06:58:32 +03:00
"stream-http": "^3.1.1"
2021-01-27 08:45:18 +03:00
}
}