@maserde/ut-client
Version:
Universitas Terbuka API Client
61 lines • 1.65 kB
JSON
{
"name": "@maserde/ut-client",
"version": "0.0.7",
"description": "Universitas Terbuka API Client",
"main": ".build/index.cjs",
"module": ".build/index.esm.js",
"types": ".build/index.d.ts",
"type": "module",
"private": false,
"bin": {
"ut-client": ".build/server.cjs"
},
"keywords": [
"Universitas Terbuka",
"UT",
"E-Learning",
"ut-client"
],
"author": "Ardi Hari Prasetiyo",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"babel-jest": "^29.7.0",
"esm": "^3.2.25",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.2",
"rollup-plugin-typescript-paths": "^1.5.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"cheerio": "1.0.0-rc.12",
"express": "^4.19.2",
"rimraf": "^5.0.7"
},
"scripts": {
"clean": "rimraf .build",
"build:tsc": "tsc && tsc-alias",
"rollup": "rollup -c rollup.config.js",
"dev": "tsx --watch ./src/index.ts",
"build": "npm run clean && npm run build:tsc && npm run rollup",
"prepublish": "npm run build",
"test": "jest"
}
}