@neosmart/ssclient 2.0.1-beta.0 → 2.0.1-beta.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/bin/ssclient.wasm +0 -0
- package/install.js +3 -2
- package/package.json +3 -7
- package/tsconfig.json +30 -0
package/bin/ssclient.wasm
CHANGED
|
Binary file
|
package/install.js
CHANGED
|
@@ -28,14 +28,15 @@ const __dirname = dirname(__filename);
|
|
|
28
28
|
* @property {Record<string, string | string[] | BuildEntry>} precompiled - Mapping of os-arch to builds
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
|
+
const BIN_NAME = "ssclient";
|
|
31
32
|
const VERSION = pkg.version.replace(/[+-].*/, "");
|
|
32
33
|
const MANIFEST_URLS = [
|
|
33
34
|
`${__dirname}/manifest.json`,
|
|
34
35
|
`https://raw.githubusercontent.com/neosmart/securestore-rs/refs/heads/master/ssclient/npm/manifests/v${pkg.version}.json`,
|
|
35
|
-
|
|
36
|
+
`https://raw.githubusercontent.com/neosmart/securestore-rs/refs/heads/master/ssclient/npm/manifests/v${VERSION}.json`,
|
|
36
37
|
`https://neosmart.net/SecureStore/ssclient/npm/manifests/v${VERSION}.json`,
|
|
38
|
+
`https://raw.githubusercontent.com/neosmart/securestore-rs/refs/tags/${BIN_NAME}/${VERSION}/ssclient/npm/manifests/v${VERSION}.json`,
|
|
37
39
|
];
|
|
38
|
-
const BIN_NAME = "ssclient";
|
|
39
40
|
const PKG_ROOT = __dirname;
|
|
40
41
|
const FALLBACK_JS = join(PKG_ROOT, "ssclient.js");
|
|
41
42
|
const BASE_BIN_DIR = join(PKG_ROOT, "bin");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neosmart/ssclient",
|
|
3
3
|
"description": "SecureStore cli client, cross-platform and sandboxed",
|
|
4
|
-
"version": "2.0.1-beta.
|
|
4
|
+
"version": "2.0.1-beta.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"SecureStore",
|
|
7
7
|
"encryption",
|
|
@@ -30,20 +30,16 @@
|
|
|
30
30
|
"./build.js",
|
|
31
31
|
"./install.js",
|
|
32
32
|
"./ssclient.js",
|
|
33
|
-
"./tsconfig.
|
|
33
|
+
"./tsconfig.json"
|
|
34
34
|
],
|
|
35
35
|
"type": "module",
|
|
36
36
|
"scripts": {
|
|
37
|
-
"
|
|
38
|
-
"prepare": "echo 'This placeholder file will be overridden by our install scripts' > bin/ssclient.cmd",
|
|
37
|
+
"prepack": "npm run lint && npm run build && echo 'This placeholder file will be overridden by our install scripts' > bin/ssclient.cmd",
|
|
39
38
|
"install": "node ./install.js",
|
|
40
39
|
"ssclient": "node ./ssclient.js",
|
|
41
40
|
"build": "node ./build.js",
|
|
42
41
|
"lint": "tsc"
|
|
43
42
|
},
|
|
44
|
-
"devDependecies": [
|
|
45
|
-
"@types/node"
|
|
46
|
-
],
|
|
47
43
|
"devDependencies": {
|
|
48
44
|
"@types/node": "^22.0.0",
|
|
49
45
|
"typescript": "^6.0.2"
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": [ "ES2022", "dom" ],
|
|
4
|
+
"types": [ "node" ],
|
|
5
|
+
"target": "ES2022",
|
|
6
|
+
"module": "Preserve",
|
|
7
|
+
"moduleDetection": "force",
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"allowJs": true,
|
|
10
|
+
"checkJs": true,
|
|
11
|
+
"noEmit": true,
|
|
12
|
+
"allowImportingTsExtensions": true,
|
|
13
|
+
"verbatimModuleSyntax": true,
|
|
14
|
+
"strict": true,
|
|
15
|
+
"noImplicitAny": true,
|
|
16
|
+
"strictNullChecks": true,
|
|
17
|
+
"skipLibCheck": true,
|
|
18
|
+
"forceConsistentCasingInFileNames": true,
|
|
19
|
+
"resolveJsonModule": true,
|
|
20
|
+
"noFallthroughCasesInSwitch": true,
|
|
21
|
+
"noUncheckedIndexedAccess": true,
|
|
22
|
+
"noImplicitOverride": true,
|
|
23
|
+
"noUnusedLocals": true,
|
|
24
|
+
"noUnusedParameters": true,
|
|
25
|
+
"noPropertyAccessFromIndexSignature": true
|
|
26
|
+
},
|
|
27
|
+
"exclude": [
|
|
28
|
+
"node_modules"
|
|
29
|
+
]
|
|
30
|
+
}
|