typescript-book/tools/package.json
2023-07-18 16:56:30 +02:00

30 lines
No EOL
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",
"check": "npm run format && npm run compile",
"prepare": "cd .. && husky install .husky",
"lint:md": "markdownlint \"*.md\""
},
"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",
"husky": "^8.0.3",
"markdownlint-cli": "^0.35.0",
"marked": "^5.1.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}