typescript-book/tools/package.json
Simone Poggiali ac90c7f27a
Updates for TypeScript 5.3 and 5.4 (#116)
* update ts

* add Import Attributes

* add NoInfer

* update cn

* update prettier

* update books

* update book with content 5.3 and 5.4
2024-06-02 21:43:32 +02:00

29 lines
1.2 KiB
JSON

{
"name": "typescript-book",
"version": "1.0.0",
"description": "The Concise TypeScript Book provides a comprehensive and succinct overview of TypeScript's capabilities. It offers clear explanations covering all aspects found in the latest version of the language, from its powerful type system to advanced features. Whether you're a beginner or an experienced developer, this book is an invaluable resource to enhance your understanding and proficiency in TypeScript.",
"main": "index.js",
"scripts": {
"format": "ts-node format",
"compile": "ts-node compile",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "ts-node lint",
"lint:md": "markdownlint \"./*.md\" markdownlint \"../*.md\"",
"check": "npm run lint:md && npm run format && npm run compile"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/marked": "^5.0.0",
"@types/node": "^20.3.1",
"@types/prettier": "^2.7.3",
"fp-ts": "^2.16.0",
"fs-extra": "^11.1.1",
"markdownlint-cli": "^0.35.0",
"marked": "^5.1.0",
"prettier": "^3.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
}
}