24 lines
606 B
JSON
24 lines
606 B
JSON
{
|
|
"name": "planning-contract",
|
|
"version": "1.0.0",
|
|
"description": "MiniMax 기반 에이전트의 계획 계약 명세서 및 검증기",
|
|
"main": "dist/contract-validator.js",
|
|
"types": "dist/types.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"test:coverage": "jest --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": ["ts", "js", "json"],
|
|
"testMatch": ["**/*.test.ts"]
|
|
}
|
|
}
|