mtcute/packages/html-parser/package.json

31 lines
792 B
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
2021-08-05 20:38:24 +03:00
"name": "@mtcute/html-parser",
"private": true,
2023-10-31 21:17:39 +03:00
"version": "0.0.0",
"description": "HTML entities parser for mtcute",
"author": "Alina Sireneva <alina@tei.su>",
2023-10-12 07:26:26 +03:00
"license": "MIT",
"main": "src/index.ts",
"type": "module",
2021-04-08 12:19:38 +03:00
"scripts": {
"test": "mocha \"tests/**/*.spec.ts\"",
2021-04-08 12:19:38 +03:00
"coverage": "nyc npm run test",
"build": "pnpm run -w build-package html-parser",
"docs": "typedoc"
2021-04-08 12:19:38 +03:00
},
"distOnlyFields": {
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
}
}
},
2021-04-08 12:19:38 +03:00
"dependencies": {
"htmlparser2": "^6.0.1",
"long": "5.2.3"
2021-04-08 12:19:38 +03:00
},
"devDependencies": {
"@mtcute/client": "workspace:^"
2021-04-08 12:19:38 +03:00
}
2022-09-28 00:42:21 +03:00
}