@just-in/core
Version:
A TypeScript-first framework for building adaptive digital health interventions.
69 lines (68 loc) • 2.27 kB
JSON
{
"name": "@just-in/core",
"version": "0.1.0",
"description": "A TypeScript-first framework for building adaptive digital health interventions.",
"license": "BSD-3-Clause",
"author": "MIACollaborative",
"repository": {
"type": "git",
"url": "https://github.com/MIACollaborative/justin-core"
},
"keywords": ["jitai","justin", "just-in time", "digital intervention", "adaptive intervention"],
"homepage": "https://miacollaborative.github.io/justin-core/",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": { "access": "public" },
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"clean": "rm -rf dist",
"docs": "typedoc",
"version-docs": "cd docs && yarn docusaurus docs:version $(node -p \"require('../package.json').version\")",
"start": "node dist/index.js",
"test:unit": "yarn build && jest --config=jest.unit.config.js -i --verbose --passWithNoTests --runInBand --detectOpenHandles",
"test:integration": "yarn build && jest --config=jest.integration.config.js --verbose --passWithNoTests --runInBand --detectOpenHandles",
"test": "yarn test:unit && yarn test:integration",
"test:coverage": "yarn test:unit && yarn test:integration --coverage"
},
"dependencies": {
"mongodb": "^6.10.0",
"mongodb-memory-server": "^10.1.4",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.14",
"@types/mongodb-memory-server": "^2.3.0",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}