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

66 lines
1.6 KiB
JSON
Raw Normal View History

2021-10-28 16:51:07 +01:00
{
2021-12-12 14:19:24 +00:00
"name": "classcharts-api",
"type": "module",
"version": "2.3.1",
"license": "ISC",
"author": {
"name": "James Cook",
"email": "james@jaminit.co.uk"
},
2023-05-14 00:59:21 +01:00
"description": "A Typescript wrapper for getting information from the ClassCharts API",
2022-05-24 22:02:27 +01:00
"keywords": [
"node",
"typescript",
"classcharts",
"class charts"
],
2022-04-10 12:25:43 +01:00
"bugs": {
2022-07-21 15:54:23 +01:00
"url": "https://github.com/classchartsapi/classcharts-api-js/issues"
2022-04-10 12:25:43 +01:00
},
2021-12-12 14:19:24 +00:00
"repository": {
2022-04-10 12:25:43 +01:00
"type": "git",
2022-07-21 15:54:23 +01:00
"url": "https://github.com/classchartsapi/classcharts-api-js.git"
2021-12-12 14:19:24 +00:00
},
"homepage": "https://classchartsapi.github.io/classcharts-api-js/",
2021-12-12 14:19:24 +00:00
"scripts": {
2022-05-24 22:36:50 +01:00
"build": "tsc",
2023-04-16 20:47:40 +01:00
"generateDocs": "typedoc --options typedoc.config.cjs",
2022-04-10 11:48:24 +01:00
"test": "jest",
2023-04-28 20:58:48 +01:00
"release": "pnpm run build && changeset publish"
2021-12-12 14:19:24 +00:00
},
"devDependencies": {
2023-04-28 20:58:48 +01:00
"@changesets/cli": "^2.26.1",
2023-04-29 21:23:06 +01:00
"@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",
2023-04-07 13:47:08 +01:00
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
2023-04-29 21:23:06 +01:00
"prettier": "^2.8.8",
2023-04-07 13:47:08 +01:00
"ts-jest": "^29.1.0",
2023-04-29 21:23:06 +01:00
"typedoc": "^0.24.6",
"typedoc-plugin-umami": "^1.2.0",
"typescript": "^5.0.4"
2021-12-12 14:19:24 +00:00
},
"main": "./dist/index.js",
2022-01-31 22:32:29 +00:00
"types": "./dist/index.d.ts",
2023-04-07 12:43:46 +01:00
"exports": {
".": {
"types": "./dist/index.d.ts",
2023-04-07 12:43:46 +01:00
"import": "./dist/index.js",
"require": "./dist/index.js"
2023-04-07 12:43:46 +01:00
},
"./types": "./dist/index.d.ts",
"./package.json": "./package.json"
},
"files": [
"dist/**"
],
"engines": {
2023-05-30 18:37:24 +01:00
"node": ">=18"
2023-06-14 09:40:40 +01:00
},
"sideEffects": false
2023-04-07 13:49:17 +01:00
}