Files

29 lines
661 B
JSON

{
"name": "@makelore/learning-contracts",
"version": "0.1.0",
"description": "Dependency-free contracts shared by the Makelore learning player and cloud learning services.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run"
},
"devDependencies": {
"typescript": "^5",
"vitest": "^4.1.8"
}
}