schedule-kernel
Version:
The back-end core module used for storing/displaying the course schedule
52 lines (51 loc) • 1.18 kB
JSON
{
"name": "schedule-kernel",
"version": "1.0.8",
"description": "The back-end core module used for storing/displaying the course schedule",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/Ris-Soft/RisScheduleKernel"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"express",
"typescript",
"nodejs",
"schedule",
"course-management"
],
"author": "PYLXU < e-pylxu@outlook.com >",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "pwsh -File build.ps1",
"prepare": "npm run build",
"start": "ts-node src/index.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/node": "^22.15.29",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"express": "^5.1.0",
"js-yaml": "^4.1.0"
}
}