clo/package.json

58 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2023-09-04 21:29:23 +08:00
{
"type": "commonjs",
2023-09-04 21:29:23 +08:00
"name": "clo",
"version": "0.0.1",
"description": "a little typesetting engine in TypeScript",
"main": "src/index.js",
2023-09-04 21:29:23 +08:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://git.kianting.info/src/clo"
2023-09-04 21:29:23 +08:00
},
"keywords": [
"typesetting"
],
"author": "Tan Kian-ting",
"license": "MIT",
"bugs": {
"url": "https://kianting.info/wiki/w/Project:Clo#Discussion"
2023-09-04 21:29:23 +08:00
},
"homepage": "https://kianting.info/wiki/w/Project:Clo",
2023-09-04 21:29:23 +08:00
"devDependencies": {
"@types/chai": "^4.3.5",
2023-11-06 00:59:25 +08:00
"@types/fontkit": "^2.0.5",
"@types/jsdom": "^21.1.4",
2023-09-04 21:29:23 +08:00
"@types/mocha": "^10.0.1",
"@types/node": "^20.8.4",
2023-10-24 00:41:15 +08:00
"@types/pdfkit": "^0.13.1",
2023-09-04 21:29:23 +08:00
"@typescript-eslint/eslint-plugin": "^6.5.0",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typedoc": "^0.25.2",
2023-09-04 21:29:23 +08:00
"typescript": "^5.2.2"
},
"dependencies": {
2023-11-16 01:16:44 +08:00
"@pdf-lib/fontkit": "^1.1.1",
"canvas": "^2.11.2",
2023-11-06 00:59:25 +08:00
"fontkit": "^2.0.2",
"hyphen": "^1.7.0",
"jsdom": "^22.1.0",
2023-11-25 22:50:23 +08:00
"memfs": "^4.6.0",
"minimist": "^1.2.8",
"npx": "^10.2.2",
2023-11-15 12:37:21 +08:00
"pdf-lib": "^1.17.1",
2023-10-24 00:41:15 +08:00
"pdfkit": "^0.13.0",
2023-10-06 01:09:28 +08:00
"typescript-parsec": "^0.3.4"
2023-09-04 21:29:23 +08:00
}
}