-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "@wayfu/simple-wapi",
"version": "0.1.22",
"description": "Simple WhatsApp Web API (WAPI)",
"main": "index.js",
"scripts": {
"dev": "webpack --config webpack.config.js --mode=development -w",
"build": "webpack --config webpack.config.js --mode=production",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayfu-id/simple-WAPI.git"
},
"keywords": [
"WAPI",
"WhatsApp API"
],
"files": [
"index.*",
"dist",
"src",
"package.json"
],
"author": "WayFu (https://github.com/wayfu-id)",
"license": "ISC",
"standard-version": {
"scripts": {
"postbump": "npm run build && git add . && git commit -m \"chore(build): build & bump new version\""
}
},
"commitizen": {
"path": "cz-conventional-changelog"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"bugs": {
"url": "https://github.com/wayfu-id/simple-WAPI/issues"
},
"homepage": "https://github.com/wayfu-id/simple-WAPI#readme",
"devDependencies": {
"husky": "^8.0.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3"
}
}