1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 03:56:59 +00:00
classcharts-api-js/package.json
2023-04-16 15:16:45 +01:00

58 lines
1.4 KiB
JSON

{
"name": "classcharts-api",
"type": "module",
"version": "2.0.0",
"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"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"generateDocs": "typedoc --entryPointStrategy expand ./src",
"test": "jest",
"prepublishOnly": "pnpm run build",
"publish": "pnpx np --no-publish && npm publish"
},
"author": "James Cook",
"license": "ISC",
"dependencies": {
"ky-universal": "^0.11.0"
},
"files": [
"dist/**"
],
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.2",
"typescript": "^5.0.4"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./types": "./dist/index.d.ts",
"./package.json": "./package.json"
}
}