UNPKG

@lit-protocol/vincent-scaffold-sdk

Version:

Shared build configuration and utilities for Vincent tools and policies

43 lines (42 loc) 1.01 kB
{ "name": "{{packageName}}", "version": "1.0.0", "description": "A Vincent tool created with @lit-protocol/vincent-scaffold-sdk", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "private": true, "scripts": { "build": "tsc", "action:build": "vincent-scaffold build tool", "dev": "npm run action:build && npm run action:deploy", "action:deploy": "vincent-scaffold deploy", "clean": "rm -rf dist" }, "devDependencies": { "@types/bun": "latest", "typescript": "^5" }, "peerDependencies": { "typescript": "^5" }, "dependencies": { "@lit-protocol/vincent-scaffold-sdk": "^0.0.9", "@lit-protocol/vincent-tool-sdk": "^1.0.1" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" }, "./action": "./src/generated/lit-action.js" }, "files": [ "dist", "src/generated" ], "publishConfig": { "access": "public" } }