1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00
classcharts-api-js/package.json
2023-05-02 19:55:34 +01:00

64 lines
1.6 KiB
JSON

{
"name": "classcharts-api",
"type": "module",
"version": "2.1.2",
"license": "ISC",
"author": {
"name": "James Cook",
"email": "james@jaminit.co.uk"
},
"description": "A Typescript wrapper for getting information from the Classcharts API",
"keywords": [
"node",
"typescript",
"classcharts",
"class charts"
],
"bugs": {
"url": "https://github.com/classchartsapi/classcharts-api-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/classchartsapi/classcharts-api-js.git"
},
"homepage": "https://classchartsapi.github.io/classcharts-api-js/",
"scripts": {
"build": "tsc",
"generateDocs": "typedoc --options typedoc.config.cjs",
"test": "jest",
"release": "pnpm run build && changeset publish"
},
"dependencies": {
"ky-universal": "^0.11.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.6",
"typedoc-plugin-umami": "^1.2.0",
"typescript": "^5.0.4"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": "./dist/index.d.ts",
"./package.json": "./package.json"
},
"files": [
"dist/**"
]
}