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

38 lines
855 B
JSON
Raw Normal View History

2021-10-28 16:51:07 +01:00
{
2021-12-12 14:19:24 +00:00
"name": "classcharts-api",
2022-02-06 15:55:31 +00:00
"version": "0.4.1",
2021-12-12 14:19:24 +00:00
"description": "",
"repository": {
"url": "https://github.com/jamesatjaminit/classcharts-api"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
2022-01-31 23:13:05 +00:00
"generateDocs": "pnpm typedoc --entryPointStrategy expand ./src",
2022-01-31 23:15:19 +00:00
"test": "echo do tests",
"prepublishOnly": "npm run build"
2021-12-12 14:19:24 +00:00
},
"author": "",
"license": "ISC",
"dependencies": {
2022-03-07 19:47:34 +00:00
"undici": "^4.15.1"
2021-12-12 14:19:24 +00:00
},
"files": [
2021-12-12 14:33:32 +00:00
"dist/**"
2021-12-12 14:19:24 +00:00
],
"devDependencies": {
2022-03-07 19:47:34 +00:00
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
2022-01-31 22:32:29 +00:00
"prettier": "^2.5.1",
2022-03-07 19:47:34 +00:00
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
2021-12-12 14:19:24 +00:00
},
2022-01-31 22:32:29 +00:00
"types": "./dist/index.d.ts",
"volta": {
"node": "16.13.2"
}
2021-12-12 14:37:52 +00:00
}