51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "@blockworks-foundation/mango-feeds",
|
|
"version": "0.1.7",
|
|
"description": "Typescript Client for mango-feeds.",
|
|
"repository": "https://github.com/blockworks-foundation/mango-feeds",
|
|
"author": {
|
|
"name": "Blockworks Foundation",
|
|
"email": "hello@blockworks.foundation",
|
|
"url": "https://blockworks.foundation"
|
|
},
|
|
"sideEffects": false,
|
|
"main": "./dist/cjs/src/index.js",
|
|
"module": "./dist/esm/src/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf dist && yarn build:browser && yarn build:node && yarn build:types",
|
|
"build:node": " tsc -p tsconfig.cjs.json --noEmit false",
|
|
"build:browser": "tsc -p tsconfig.esm.json --noEmit false",
|
|
"build:types": "tsc -p tsconfig.types.json --noEmit false",
|
|
"format": "prettier --check ./ts",
|
|
"lint": "eslint ./ts/client/src --ext ts --ext tsx --ext js --quiet",
|
|
"typecheck": "tsc --noEmit --pretty",
|
|
"prepublishOnly": "yarn validate && yarn build",
|
|
"validate": "yarn lint && yarn format"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/recommended": "^1.0.1",
|
|
"@types/node": "^18.11.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
"@typescript-eslint/parser": "^5.32.0",
|
|
"eslint": "^7.28.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"prettier": "^2.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.22.5",
|
|
"typescript": "^4.9.4",
|
|
"ws": "^8.13.0"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.13.0"
|
|
},
|
|
"license": "AGPL-3.0-only"
|
|
}
|