Compose-ready workspace: packages/zappier (rate card, portal, Stripe), packages/verae-zapier-middleware (timestamp + NATS), packages/verae-zapier (CLI app), vendor/zapier-platform, and research/zapier vendor corpus. Gate 0 structure checks pass. Product code and research are not yet wired.
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.26.2",
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.32.0",
|
|
"chalk": "^4.1.1",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^9.32.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-mocha": "^10.5.0",
|
|
"eslint-plugin-n": "^17.21.2",
|
|
"eslint-plugin-promise": "^7.2.1",
|
|
"globals": "^15.13.0",
|
|
"husky": "^9.1.7",
|
|
"inquirer": "^8.0.0",
|
|
"lint-staged": "^11.2.6",
|
|
"mocha": "^11.7.1",
|
|
"prettier": "^3.6.2",
|
|
"semver": "^7.7.2",
|
|
"should": "^13"
|
|
},
|
|
"scripts": {
|
|
"test": "pnpm -r test",
|
|
"smoke-test": "pnpm -r --if-present smoke-test",
|
|
"lint": "pnpm -r lint",
|
|
"lint:fix": "pnpm -r lint:fix",
|
|
"lint-examples": "eslint examples",
|
|
"validate": "pnpm -r validate",
|
|
"bump": "./scripts/bump.js",
|
|
"prepare": "husky",
|
|
"generate-types": "cd schema-to-ts && pnpm generate-types"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix --quiet"
|
|
],
|
|
"*.{js,json}": [
|
|
"prettier --write --ignore-path=.prettierignore"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true
|
|
}
|
|
}
|