1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

fix: tidy up

This commit is contained in:
James Cook 2023-05-02 19:55:34 +01:00
parent d752eed8bd
commit 25cc86eaf7
5 changed files with 40 additions and 106 deletions

View file

@ -2,7 +2,12 @@
"name": "classcharts-api",
"type": "module",
"version": "2.1.2",
"description": "A typescript wrapper for getting information from the Classcharts API",
"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",
@ -16,21 +21,16 @@
"type": "git",
"url": "https://github.com/classchartsapi/classcharts-api-js.git"
},
"main": "./dist/index.js",
"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"
},
"author": "James Cook",
"license": "ISC",
"dependencies": {
"ky-universal": "^0.11.0"
},
"files": [
"dist/**"
],
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.5.1",
@ -47,13 +47,18 @@
"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"
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": "./dist/index.d.ts",
"./package.json": "./package.json"
}
},
"files": [
"dist/**"
]
}