-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "whatsapp-chat-parser",
"version": "4.0.2",
"description": "A package to parse WhatsApp chats with Node.js or in the browser 💬",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "tsup",
"test": "cross-env TZ=UTC vitest run",
"test:watch": "cross-env TZ=UTC vitest watch",
"test:coverage": "cross-env TZ=UTC vitest run --coverage",
"lint": "tsc && eslint .",
"format": "prettier --write .",
"prepublishOnly": "npm run build && npm t"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"whatsapp",
"chat",
"discussion",
"conversation",
"log",
"parser"
],
"homepage": "https://github.com/Pustur/whatsapp-chat-parser",
"repository": {
"type": "git",
"url": "https://github.com/Pustur/whatsapp-chat-parser"
},
"bugs": {
"url": "https://github.com/Pustur/whatsapp-chat-parser/issues"
},
"author": {
"name": "Loris Bettazza",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"@vitest/coverage-istanbul": "2.1.1",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"tsup": "8.3.0",
"typescript": "5.5.4",
"vitest": "2.1.1"
}
}