-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "zdk",
"version": "0.5.0",
"description": "Kit de desenvolvimento Zappy",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup --watch",
"build": "rm -rf ./dist && tsup",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"docs:generate": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/innovtech-developers/zdk.git"
},
"keywords": [
"zappy",
"kit",
"sdk",
"zappy-contabil",
"zappy-plataforma",
"whatsapp",
"sistema-de-atendimento"
],
"author": "Lucas Bogos <@lucas-bogos>",
"license": "ISC",
"bugs": {
"url": "https://github.com/innovtech-developers/zdk/issues"
},
"homepage": "https://github.com/innovtech-developers/zdk#readme",
"files": [
"./dist",
"!/dist/.tsbuildinfo",
"LICENSE"
],
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.*"
},
"dependencies": {
"axios": "^1.6.2"
}
}