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

29 lines
571 B
JSON
Raw Normal View History

2021-10-28 16:51:07 +01:00
{
"name": "classcharts-api",
2021-11-24 18:05:07 +00:00
"version": "0.0.7",
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-10-29 14:59:24 +01:00
"undici": "^4.9.2"
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": {
"@types/node": "^16.11.6",
2021-10-29 15:46:44 +01:00
"typedoc": "^0.22.7",
2021-10-28 16:51:07 +01:00
"typescript": "^4.4.4"
},
"types": "./dist/index.d.ts"
2021-10-29 15:46:44 +01:00
}