39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "@pythnetwork/price-service-sdk",
|
|
"version": "1.2.0",
|
|
"description": "Pyth price service SDK",
|
|
"homepage": "https://pyth.network",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"repository": "https://github.com/pyth-network/pyth-sdk-js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build": "tsc",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"gen-ts-schema": "quicktype --src-lang schema src/schemas/price_feed.json -o src/schemas/PriceFeed.ts --raw-type any --converters all-objects && prettier --write \"src/schemas/*.ts\"",
|
|
"lint": "eslint src/",
|
|
"prepublishOnly": "npm run build && npm test && npm run lint",
|
|
"preversion": "npm run lint",
|
|
"version": "npm run format && git add -A src"
|
|
},
|
|
"keywords": [
|
|
"pyth",
|
|
"oracle"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.4.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"eslint": "^8.13.0",
|
|
"jest": "^29.4.0",
|
|
"prettier": "^2.6.2",
|
|
"quicktype": "^15.0.261",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^4.6.3"
|
|
}
|
|
}
|