mtcute/package.json

81 lines
3.2 KiB
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
"name": "mtcute-workspace",
2021-04-08 12:19:38 +03:00
"private": true,
2024-05-25 15:34:46 +03:00
"version": "0.12.2",
2021-07-25 21:03:40 +03:00
"description": "Type-safe library for MTProto (Telegram API) for browser and NodeJS",
2023-10-12 07:26:26 +03:00
"license": "MIT",
2024-03-20 13:56:18 +03:00
"author": "alina sireneva <alina@tei.su>",
2024-02-22 15:41:11 +03:00
"workspaces": [
"packages/*"
],
2021-04-08 12:19:38 +03:00
"scripts": {
2023-11-13 13:24:42 +03:00
"prepare": "husky install .config/husky",
"postinstall": "node scripts/validate-deps-versions.mjs && node scripts/remove-jsr-sourcefiles.mjs",
2023-11-29 20:31:18 +03:00
"test": "pnpm run -r test && vitest --config .config/vite.mts run",
2023-11-13 13:24:42 +03:00
"test:dev": "vitest --config .config/vite.mts watch",
"test:ui": "vitest --config .config/vite.mts --ui",
"test:coverage": "vitest --config .config/vite.mts run --coverage",
"test:ci": "vitest --config .config/vite.mts run --coverage.enabled --coverage.reporter=json",
2023-11-29 20:31:18 +03:00
"test:browser": "vitest --config .config/vite.browser.mts run",
"test:browser:dev": "vitest --config .config/vite.browser.mts watch",
"lint": "eslint .",
2023-11-13 13:24:42 +03:00
"lint:ci": "NODE_OPTIONS=\\\"--max_old_space_size=8192\\\" eslint --config .config/eslint.ci.js .",
"lint:tsc": "rimraf packages/**/dist && pnpm -r --workspace-concurrency=4 exec tsc --build",
2023-11-01 20:24:00 +03:00
"lint:tsc:ci": "pnpm -r exec tsc --build",
"lint:dpdm": "dpdm -T --no-warning --no-tree --exit-code circular:1 packages/*",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"packages/**/*.ts\"",
"publish-all": "node scripts/publish.js all",
2023-11-13 13:24:42 +03:00
"docs": "typedoc --options .config/typedoc/config.cjs",
"build-package": "node scripts/build-package.js"
2021-04-08 12:19:38 +03:00
},
"dependencies": {
"node-gyp": "9.3.1"
2021-04-08 12:19:38 +03:00
},
"devDependencies": {
2023-11-12 01:34:01 +03:00
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@teidesu/slow-types-compiler": "1.1.0",
2023-11-29 20:31:18 +03:00
"@types/node": "20.10.0",
2024-05-06 18:31:39 +03:00
"@types/deno": "npm:@teidesu/deno-types@1.43.1",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
2024-03-17 21:46:51 +03:00
"@vitest/browser": "1.4.0",
"@vitest/coverage-v8": "1.4.0",
"@vitest/expect": "1.4.0",
"@vitest/spy": "1.4.0",
2024-03-17 21:46:51 +03:00
"@vitest/ui": "1.4.0",
"chai": "^5.1.0",
2023-11-29 20:31:18 +03:00
"cjs-module-lexer": "1.2.3",
"dotenv-flow": "3.2.0",
2023-11-12 01:34:01 +03:00
"dpdm": "3.14.0",
2023-11-29 20:31:18 +03:00
"esbuild": "0.18.20",
"eslint": "8.47.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-ascii": "1.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"glob": "10.2.6",
2023-11-12 01:34:01 +03:00
"husky": "8.0.3",
"lint-staged": "13.2.2",
"playwright": "^1.42.1",
2023-10-06 21:15:52 +03:00
"prettier": "3.0.3",
"rimraf": "5.0.1",
"semver": "7.5.1",
"ts-node": "10.9.1",
2023-11-12 01:34:01 +03:00
"tsconfig-paths": "4.2.0",
2024-04-03 15:50:14 +03:00
"typedoc": "0.25.12",
"typescript": "5.4.3",
2024-03-17 21:46:51 +03:00
"vite": "5.1.6",
"vite-plugin-node-polyfills": "0.21.0",
2024-03-17 21:46:51 +03:00
"vitest": "1.4.0"
2023-11-13 13:24:42 +03:00
},
2024-05-06 18:44:11 +03:00
"packageManager": "pnpm@9.0.6",
2023-11-13 13:24:42 +03:00
"prettier": "./.config/prettier.cjs",
"eslintConfig": {
"extends": "./.config/eslint.cjs"
}
2021-04-08 12:19:38 +03:00
}