@deepbounty/sdk 1.2.8 → 1.2.10
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 +15 -15
- package/dist/events.d.ts +4 -0
- package/dist/types/targets.d.ts +2 -0
- package/package.json +50 -50
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# DeepBounty SDK
|
|
2
|
-
|
|
3
|
-
The official SDK for developing modules for the DeepBounty project.
|
|
4
|
-
|
|
5
|
-
## 📦 Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install @deepbounty/sdk
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## 📤 Publish
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
npm publish --access public
|
|
15
|
-
```
|
|
1
|
+
# DeepBounty SDK
|
|
2
|
+
|
|
3
|
+
The official SDK for developing modules for the DeepBounty project.
|
|
4
|
+
|
|
5
|
+
## 📦 Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @deepbounty/sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## 📤 Publish
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm publish --access public
|
|
15
|
+
```
|
package/dist/events.d.ts
CHANGED
package/dist/types/targets.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@deepbounty/sdk",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "DeepBounty SDK for module development",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.js",
|
|
11
|
-
"require": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./types": {
|
|
14
|
-
"types": "./dist/types/index.d.ts"
|
|
15
|
-
},
|
|
16
|
-
"./types/*": {
|
|
17
|
-
"types": "./dist/types/*.d.ts"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist",
|
|
22
|
-
"README.md",
|
|
23
|
-
"LICENSE"
|
|
24
|
-
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "tsc",
|
|
27
|
-
"prepublishOnly": "npm run build"
|
|
28
|
-
},
|
|
29
|
-
"keywords": [
|
|
30
|
-
"deepbounty",
|
|
31
|
-
"sdk",
|
|
32
|
-
"types",
|
|
33
|
-
"module",
|
|
34
|
-
"plugin"
|
|
35
|
-
],
|
|
36
|
-
"author": "dd_06",
|
|
37
|
-
"license": "GPL-3.0-only",
|
|
38
|
-
"repository": {
|
|
39
|
-
"type": "git",
|
|
40
|
-
"url": "https://github.com/dd060606/DeepBounty.git",
|
|
41
|
-
"directory": "sdk"
|
|
42
|
-
},
|
|
43
|
-
"homepage": "https://github.com/dd060606/DeepBounty#readme",
|
|
44
|
-
"bugs": {
|
|
45
|
-
"url": "https://github.com/dd060606/DeepBounty/issues"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"typescript": "^5.9.2"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepbounty/sdk",
|
|
3
|
+
"version": "1.2.10",
|
|
4
|
+
"description": "DeepBounty SDK for module development",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./types": {
|
|
14
|
+
"types": "./dist/types/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./types/*": {
|
|
17
|
+
"types": "./dist/types/*.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsc",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"deepbounty",
|
|
31
|
+
"sdk",
|
|
32
|
+
"types",
|
|
33
|
+
"module",
|
|
34
|
+
"plugin"
|
|
35
|
+
],
|
|
36
|
+
"author": "dd_06",
|
|
37
|
+
"license": "GPL-3.0-only",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "https://github.com/dd060606/DeepBounty.git",
|
|
41
|
+
"directory": "sdk"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/dd060606/DeepBounty#readme",
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/dd060606/DeepBounty/issues"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"typescript": "^5.9.2"
|
|
49
|
+
}
|
|
50
|
+
}
|