mirror of
https://github.com/classchartsapi/classcharts-api-js.git
synced 2026-05-14 03:56:59 +00:00
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"name": "classcharts-api",
|
|
"type": "module",
|
|
"version": "2.3.1",
|
|
"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"
|
|
},
|
|
"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": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./types": "./dist/index.d.ts",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"sideEffects": false
|
|
}
|