@factorial-finance/blueprint-node
Version:
blueprint-node-plugin
87 lines (86 loc) • 2.12 kB
JSON
{
"name": "@factorial-finance/blueprint-node",
"version": "0.0.13",
"description": "blueprint-node-plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:coverage": "NODE_ENV=test jest --coverage",
"watch": "tsc --watch",
"prepare": "yarn build"
},
"keywords": [
"ton",
"tvm",
"blueprint",
"plugin",
"localnode",
"node"
],
"author": "weather94",
"license": "MIT",
"files": [
"dist/**/*"
],
"devDependencies": {
"@tact-lang/compiler": "^1.6.12",
"@ton-community/func-js": "^0.9.1",
"@ton/blueprint": "^0.37.0",
"@ton/core": "^0.59.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.20.0",
"@ton/test-utils": "^0.4.2",
"@ton/tolk-js": "^0.12.0",
"@ton/ton": "^15.3.0",
"@types/axios": "^0.14.4",
"@types/figlet": "^1.7.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"axios": "^1.10.0",
"eslint": "^9.29.0",
"jest": "^30.0.4",
"nodemon": "^3.0.2",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"chalk": "4",
"dotenv": "^16.3.1",
"figlet": "^1.8.1",
"json-rpc-2.0": "^1.7.0",
"zod": "^3.25.67"
},
"peerDependencies": {
"@tact-lang/compiler": "^1.6.12",
"@ton-community/func-js": "^0.9.1",
"@ton/blueprint": "^0.20.0",
"@ton/core": "^0.59.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.20.0",
"@ton/test-utils": "^0.4.2",
"@ton/tolk-js": "^0.12.0",
"@ton/ton": "^15.3.0"
},
"jest": {
"testTimeout": 60000,
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.integration.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/test.ts"
]
}
}