-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.39 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
{
"name": "@x-spacy/message-builder",
"version": "0.0.0",
"description": "A WhatsApp message builder made for X Spacy LTDA.",
"license": "MIT",
"private": false,
"keywords": [
"whatsapp",
"vyrnn",
"meta",
"facebook-api",
"whatsapp-api",
"whatsapp-message",
"whatsapp-messages",
"whatsapp-message-builder",
"wa-message",
"wa-messages",
"wa-message-builder"
],
"types": "@types/index.d.ts",
"type": "commonjs",
"main": "dist/index.js",
"author": {
"name": "Vinícius Gutierrez da Silva Rocha",
"email": "srgutyerrez@gmail.com",
"url": "https://github.com/gutyerrez"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x-spacy/messages.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"tag": "latest"
},
"engines": {
"node": "v20.x.x"
},
"scripts": {
"build": "sh scripts/build.sh"
},
"dependencies": {
"@x-spacy/exceptions": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@x-spacy/eslint-config": "^1.26.2",
"eslint": "^9.11.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": false
}
}
}