|
|
@@ -1,14 +1,17 @@
|
|
|
{
|
|
|
"name": "@pythnetwork/staking-sdk",
|
|
|
- "version": "0.0.1",
|
|
|
+ "version": "0.0.2",
|
|
|
"description": "Pyth staking SDK",
|
|
|
"main": "src/index.ts",
|
|
|
"types": "src/index.d.ts",
|
|
|
+ "files": [
|
|
|
+ "dist/**/*"
|
|
|
+ ],
|
|
|
"publishConfig": {
|
|
|
"access": "public"
|
|
|
},
|
|
|
"scripts": {
|
|
|
- "build": "tsc && node scripts/update-package-json.mjs",
|
|
|
+ "build": "tsc",
|
|
|
"test": "pnpm run test:format && pnpm run test:lint && pnpm run test:integration && pnpm run test:types",
|
|
|
"fix": "pnpm fix:lint && pnpm fix:format",
|
|
|
"fix:format": "prettier --write .",
|
|
|
@@ -16,7 +19,8 @@
|
|
|
"test:format": "prettier --check .",
|
|
|
"test:lint": "jest --selectProjects lint",
|
|
|
"test:types": "tsc",
|
|
|
- "test:integration": "echo disabled # jest --selectProjects integration"
|
|
|
+ "test:integration": "echo disabled # jest --selectProjects integration",
|
|
|
+ "prepublishOnly": "node scripts/update-package-json.mjs"
|
|
|
},
|
|
|
"devDependencies": {
|
|
|
"@cprussin/eslint-config": "^3.0.0",
|