-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "alice-whispers",
"version": "0.2.26",
"description": "Intelligent message batching system that whispers your messages in perfect harmony, with smart batching and error classification",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=14.0.0"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && rollup -c",
"check-types": "tsc --noEmit",
"test": "jest && yarn test-timeout",
"test:dev": "jest --watch --detectOpenHandles",
"lint": "eslint src/**/*.ts",
"format": "prettier --write 'src/**/*.ts'",
"prepublishOnly": "yarn build",
"ci": "yarn install --frozen-lockfile && yarn build",
"test-timeout": "node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test-timeout.ts",
"validate-example": "node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/validate-example.ts",
"test-limit": "node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test-limit.ts"
},
"files": [
"dist",
"dist/cjs",
"dist/esm",
"dist/types",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/21e8/alice-whispers.git"
},
"keywords": [
"telegram",
"bot",
"notifications",
"0xalice"
],
"author": "0xAlice",
"license": "MIT",
"dependencies": {
"typescript": "^4.9.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.17",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"eslint": "^8.37.0",
"jest": "^29.7.0",
"prettier": "^2.8.7",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2"
}
}