-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "tdl-dev",
"version": "0.0.0",
"private": true,
"description": "A JavaScript wrapper for TDLib",
"scripts": {
"clean": "rimraf --glob packages/*/dist/ && npm run clean -w tdl",
"clean-modules": "rm -rf node_modules/ && rm -rf packages/node_modules/",
"clean-all": "npm run clean && npm run clean-modules",
"build": "npm run build -ws",
"ts:check": "tsc --noEmit",
"flow:check": "flow check --max-warnings 0",
"lint": "eslint . --max-warnings 0",
"test:unit": "vitest run --exclude \"tests/integration|tests/auth-only\"",
"test": "npm run flow:check && tsc --noEmit && npm run lint && npm run test:unit",
"test:integration": "vitest run tests/integration",
"test:all": "npm run test && npm run test:integration",
"test:auth-only": "vitest run tests/auth-only",
"prepare": "npm run build",
"prepack": "npm test"
},
"workspaces": [
"packages/tdl",
"packages/prebuilt-tdlib",
"packages/tdl-install-types"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/debug": "^4.1.12",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"flow-bin": "^0.238.3",
"node-gyp": "^11.0.0",
"prebuildify": "^6.0.1",
"prebuilt-tdlib": "^0.1008041.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vitest": "^2.1.8"
},
"author": "eilvelia <[email protected]>",
"license": "MIT",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eilvelia/tdl.git"
},
"bugs": {
"url": "https://github.com/eilvelia/tdl/issues"
},
"homepage": "https://github.com/eilvelia/tdl#readme"
}