@codebolt/codeboltjs 2.2.4 → 2.2.5
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/package.json +15 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codebolt/codeboltjs",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "",
|
|
@@ -9,18 +9,9 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist/**/*",
|
|
11
11
|
"README.md",
|
|
12
|
-
"LICENSE"
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"package.json"
|
|
13
14
|
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc && node script/copy-wasm.js",
|
|
16
|
-
"build:webpack": "webpack",
|
|
17
|
-
"build:all": "npm run build && npm run build:webpack",
|
|
18
|
-
"build:docs": "typedoc --plugin typedoc-plugin-missing-exports",
|
|
19
|
-
"build:jsondocs": "typedoc --plugin typedoc-plugin-missing-exports --json out.json --pretty",
|
|
20
|
-
"test": "echo \"Integration tests require WebSocket server - skipping for release\" && exit 0",
|
|
21
|
-
"clean": "powershell -Command \"Remove-Item -Path 'dist' -Recurse -Force -ErrorAction SilentlyContinue; Remove-Item -Path 'build' -Recurse -Force -ErrorAction SilentlyContinue\"",
|
|
22
|
-
"lint": "eslint src/**/*.ts && tsc --noEmit"
|
|
23
|
-
},
|
|
24
15
|
"repository": {
|
|
25
16
|
"type": "git",
|
|
26
17
|
"url": "git+https://github.com/codeboltai/codeboltjs.git",
|
|
@@ -32,7 +23,7 @@
|
|
|
32
23
|
"access": "public"
|
|
33
24
|
},
|
|
34
25
|
"dependencies": {
|
|
35
|
-
"@codebolt/types": "
|
|
26
|
+
"@codebolt/types": "^1.0.18",
|
|
36
27
|
"@types/uuid": "^10.0.0",
|
|
37
28
|
"buffer": "^6.0.3",
|
|
38
29
|
"execa": "^9.5.2",
|
|
@@ -70,5 +61,15 @@
|
|
|
70
61
|
"types": "./dist/index.d.ts",
|
|
71
62
|
"default": "./dist/index.js"
|
|
72
63
|
}
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "tsc && node script/copy-wasm.js",
|
|
67
|
+
"build:webpack": "webpack",
|
|
68
|
+
"build:all": "npm run build && npm run build:webpack",
|
|
69
|
+
"build:docs": "typedoc --plugin typedoc-plugin-missing-exports",
|
|
70
|
+
"build:jsondocs": "typedoc --plugin typedoc-plugin-missing-exports --json out.json --pretty",
|
|
71
|
+
"test": "echo \"Integration tests require WebSocket server - skipping for release\" && exit 0",
|
|
72
|
+
"clean": "powershell -Command \"Remove-Item -Path 'dist' -Recurse -Force -ErrorAction SilentlyContinue; Remove-Item -Path 'build' -Recurse -Force -ErrorAction SilentlyContinue\"",
|
|
73
|
+
"lint": "eslint src/**/*.ts && tsc --noEmit"
|
|
73
74
|
}
|
|
74
|
-
}
|
|
75
|
+
}
|