@patchworkdev/pdk
Version:
Patchwork Development Kit
84 lines • 2.22 kB
JSON
{
"name": "@patchworkdev/pdk",
"description": "Patchwork Development Kit",
"version": "0.5.1",
"main": "dist/index.js",
"types": "src/index.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./utils": {
"default": "./dist/exports/index.js",
"types": "./dist/exports/index.d.ts"
},
"./plugins": {
"default": "./dist/plugins/index.js",
"types": "./dist/plugins/index.d.ts"
},
"./types": {
"default": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"src",
"/utils"
],
"type": "commonjs",
"keywords": [
"solidity",
"patchwork",
"codegen"
],
"author": "Runic Labs, Inc",
"license": "MIT",
"dependencies": {
"@commander-js/extra-typings": "next",
"@hono/node-server": "1.12.2",
"@ponder/core": "^0.5.17",
"@inquirer/prompts": "^7.2.0",
"commander": "12.1.0",
"dockerode": "4.0.2",
"execa": "9.5.0",
"glob": "^11.0.0",
"hono": "4.6.3",
"listr2": "8.2.5",
"lodash": "4.17.21",
"ora": "8.1.0",
"picocolors": "1.1.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"prettier": "3.3.3",
"ts-morph": "^24.0.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.6.3",
"viem": "2.21.51",
"@patchworkdev/common": "0.4.1"
},
"bin": {
"pdk": "dist/index.js"
},
"devDependencies": {
"@types/dockerode": "3.3.32",
"@types/glob": "^8.1.0",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.12",
"@types/node": "22.5.1",
"@types/yargs": "17.0.33",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"vite": "5.4.2"
},
"scripts": {
"start": "node dist/index.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --passWithNoTests",
"test:coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage --passWithNoTests",
"build": "tsc --build && cp -r ../../schemas dist",
"build:wizard": "cd ../../apps/wizard && BUILD_OUT_DIR=../../packages/pdk/dist/wizard vite build",
"build:all": "pnpm build && pnpm build:wizard"
}
}