zaileys 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
## my-ts-project
|
|
2
|
+
|
|
3
|
+
bot wa
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
if you want to build package :
|
|
7
|
+
```bash
|
|
8
|
+
yarn build
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
if you want to generate docs :
|
|
12
|
+
```bash
|
|
13
|
+
yarn build
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
if you want to publish :
|
|
17
|
+
```bash
|
|
18
|
+
yarn build
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
This is auto generating **Node Package Manager** by [setup-npm](https://www.npmjs.com/package/setup-npm) developing by [zaadevofc](https://instagram.com/zaadevofc)
|
|
24
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zaileys",
|
|
3
|
+
"description": "bot wa",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
10
|
+
"lint": "tsc",
|
|
11
|
+
"docs": "npx typedoc",
|
|
12
|
+
"dev": "ts-node-dev src/test",
|
|
13
|
+
"test": "ts-node src/test"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://zaadevofc.github.io/zaileys/",
|
|
16
|
+
"funding": "https://.....",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/zaadevofc/zaileys/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"url": "git+https://github.com/zaadevofc/zaileys.git"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"zaileys"
|
|
25
|
+
],
|
|
26
|
+
"author": "zaadevofc",
|
|
27
|
+
"license": "ISC",
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"nodemon": "^3.1.4",
|
|
30
|
+
"ts-node": "^10.9.2",
|
|
31
|
+
"typescript": "^5.5.4"
|
|
32
|
+
}
|
|
33
|
+
}
|