1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 19:59:37 +00:00

fix: compile for es2021

This commit is contained in:
James Cook 2021-12-12 14:19:24 +00:00
parent 0e5e762203
commit 33f235c7d7
3 changed files with 56 additions and 47 deletions

View file

@ -1,29 +1,31 @@
{
"name": "classcharts-api",
"version": "0.0.8",
"description": "",
"repository": {
"url": "https://github.com/jamesatjaminit/classcharts-api"
},
"main": "./dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"generateDocs": "pnpm typedoc --entryPointStrategy expand ./src"
},
"author": "",
"license": "ISC",
"dependencies": {
"undici": "^4.10.3"
},
"files": [
"dist/**",
"types.d.ts"
],
"devDependencies": {
"@types/node": "^16.11.10",
"typedoc": "^0.22.9",
"typescript": "^4.5.2"
},
"types": "./dist/index.d.ts"
}
"name": "classcharts-api",
"version": "0.0.10",
"description": "",
"repository": {
"url": "https://github.com/jamesatjaminit/classcharts-api"
},
"main": "./dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"generateDocs": "pnpm typedoc --entryPointStrategy expand ./src",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"undici": "^4.11.3"
},
"files": [
"dist/**",
"types.d.ts"
],
"devDependencies": {
"@types/node": "^16.11.12",
"dotenv": "^10.0.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.3"
},
"types": "./dist/index.d.ts"
}