-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.22 KB
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
{
"author": {
"email": "community@arcaelas.com",
"name": "Arcaelas Insiders",
"url": "https://github.com/arcaelas"
},
"bugs": {
"email": "community@arcaelas.com",
"url": "https://github.com/arcaelas/whatsapp/issues"
},
"dependencies": {
"baileys": "7.0.0-rc.9",
"pino": "^10.1.0",
"qrcode": "^1.5.4"
},
"description": "A small box of tools, which are implemented in different factions of the library.",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^25.0.3",
"@types/qrcode": "^1.5.6",
"eslint": "^9.0.0",
"ioredis": "^5.10.1",
"prettier": "^3.0.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.0.4",
"typescript-eslint": "^8.0.0"
},
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"types": "./build/esm/index.d.ts"
},
"./decorators": {
"import": "./build/esm/decorators.js",
"require": "./build/cjs/decorators.js",
"types": "./build/esm/decorators.d.ts"
}
},
"files": [
"build"
],
"homepage": "https://github.com/arcaelas/whatsapp",
"keywords": [
"whatsapp",
"tools",
"arcaelas",
"arcaelas insiders",
"arcaelas-insiders",
"javascript"
],
"license": "ISC",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"name": "@arcaelas/whatsapp",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/arcaelas/whatsapp.git"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:cjs": "tsc --module commonjs --moduleResolution node --outDir build/cjs && tsc-alias --outDir build/cjs && echo '{\"type\":\"commonjs\"}' > build/cjs/package.json",
"build:esm": "tsc --module ESNext --moduleResolution bundler --outDir build/esm && tsc-alias --resolve-full-paths --outDir build/esm && echo '{\"type\":\"module\"}' > build/esm/package.json",
"docs": "mkdocs gh-deploy --force",
"lint": "eslint src/ --fix",
"prepublishOnly": "rm -rf build && npm version minor && yarn build",
"release": "npm publish --access public"
},
"types": "./build/esm/index.d.ts",
"version": "3.5.0"
}