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

30 lines
574 B
JSON
Raw Normal View History

2021-10-28 16:51:07 +01:00
{
"name": "classcharts-api",
2021-11-24 20:24:46 +00:00
"version": "0.0.8",
2021-10-28 16:51:07 +01:00
"description": "",
"repository": {
2021-10-28 17:14:16 +01:00
"url": "https://github.com/jamesatjaminit/classcharts-api"
2021-10-28 16:51:07 +01:00
},
"main": "./dist/index.js",
2021-10-28 16:51:07 +01:00
"scripts": {
2021-11-23 22:26:49 +00:00
"prepare": "npm run build",
"build": "tsc",
2021-10-29 15:46:44 +01:00
"generateDocs": "pnpm typedoc --entryPointStrategy expand ./src"
2021-10-28 16:51:07 +01:00
},
"author": "",
"license": "ISC",
"dependencies": {
2021-11-24 20:24:46 +00:00
"undici": "^4.10.3"
2021-10-28 16:51:07 +01:00
},
"files": [
2021-11-23 23:04:26 +00:00
"dist/**",
"types.d.ts"
],
2021-10-28 16:51:07 +01:00
"devDependencies": {
2021-11-24 20:24:46 +00:00
"@types/node": "^16.11.10",
"typedoc": "^0.22.9",
"typescript": "^4.5.2"
2021-10-28 16:51:07 +01:00
},
"types": "./dist/index.d.ts"
2021-11-24 20:24:46 +00:00
}