swipl-wasm 3.3.0 → 3.3.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 +35 -3
- package/dist/generateImage.js +2 -2
- package/dist/swipl/swipl-bundle-no-data.js +1 -1
- package/dist/swipl/swipl-bundle.js +1 -1
- package/dist/swipl/swipl-web.data +0 -0
- package/dist/swipl/swipl-web.js +1 -1
- package/dist/swipl/swipl-web.wasm +0 -0
- package/dist/swipl/swipl.js +1 -1
- package/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swipl-wasm",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"contributors": [
|
|
5
5
|
"Raivo Laanemets",
|
|
6
6
|
"Jesse Wright",
|
|
@@ -21,24 +21,22 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@octokit/rest": "^19.0.7",
|
|
23
23
|
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.5",
|
|
24
|
-
"@types/emscripten": "^1.39.6",
|
|
25
24
|
"@types/fs-extra": "^11.0.1",
|
|
26
|
-
"@types/node": "^
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
28
|
-
"@typescript-eslint/parser": "^5.59.
|
|
29
|
-
"
|
|
30
|
-
"eslint": "^8.39.0",
|
|
25
|
+
"@types/node": "^20.1.3",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.59.5",
|
|
27
|
+
"@typescript-eslint/parser": "^5.59.5",
|
|
28
|
+
"eslint": "^8.40.0",
|
|
31
29
|
"fs-extra": "^11.1.1",
|
|
32
30
|
"http-server": "^14.1.1",
|
|
33
31
|
"mocha": "^10.2.0",
|
|
34
32
|
"node-static": "^0.7.11",
|
|
35
33
|
"npm-run-all": "^4.1.5",
|
|
36
|
-
"puppeteer": "^20.1.
|
|
37
|
-
"semantic-release": "^
|
|
34
|
+
"puppeteer": "^20.1.2",
|
|
35
|
+
"semantic-release": "^21.0.2",
|
|
38
36
|
"ts-node": "^10.9.1",
|
|
39
37
|
"typescript": "^5.0.4",
|
|
40
|
-
"webpack": "^5.82.
|
|
41
|
-
"webpack-cli": "^5.
|
|
38
|
+
"webpack": "^5.82.1",
|
|
39
|
+
"webpack-cli": "^5.1.1"
|
|
42
40
|
},
|
|
43
41
|
"files": [
|
|
44
42
|
"dist/**/*.js",
|
|
@@ -75,9 +73,6 @@
|
|
|
75
73
|
"bundle:webpack": "webpack --config webpack.config.js",
|
|
76
74
|
"bundle:latest": "ts-node scripts/post-webpack"
|
|
77
75
|
},
|
|
78
|
-
"peerDependencies": {
|
|
79
|
-
"@types/emscripten": "^1.39.6"
|
|
80
|
-
},
|
|
81
76
|
"config": {
|
|
82
77
|
"swipl": {
|
|
83
78
|
"version": "9.1.9",
|
|
@@ -118,5 +113,9 @@
|
|
|
118
113
|
}
|
|
119
114
|
]
|
|
120
115
|
]
|
|
116
|
+
},
|
|
117
|
+
"dependencies": {
|
|
118
|
+
"@inrupt/universal-fetch": "^1.0.1",
|
|
119
|
+
"@types/emscripten": "^1.39.6"
|
|
121
120
|
}
|
|
122
121
|
}
|