21 lines
465 B
JSON
21 lines
465 B
JSON
{
|
|
"name": "@devflow/core",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm,cjs --clean && tsc -p tsconfig.build.json",
|
|
"typecheck": "tsc -b --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "8.17.1",
|
|
"dotenv": "17.4.2",
|
|
"yaml": "2.6.1",
|
|
"zod": "3.24.1"
|
|
}
|
|
}
|