@arcjet/stable-hash 1.0.0-beta.7 → 1.0.0-beta.9
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 +3 -0
- package/package.json +22 -15
package/README.md
CHANGED
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
[Arcjet][arcjet] stable hashing utility.
|
|
20
20
|
|
|
21
|
+
- [npm package (`@arcjet/stable-hash`)](https://www.npmjs.com/package/@arcjet/stable-hash)
|
|
22
|
+
- [GitHub source code (`stable-hash/` in `arcjet/arcjet-js`)](https://github.com/arcjet/arcjet-js/tree/main/stable-hash)
|
|
23
|
+
|
|
21
24
|
## Installation
|
|
22
25
|
|
|
23
26
|
```shell
|
package/package.json
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcjet/stable-hash",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.9",
|
|
4
4
|
"description": "Arcjet stable hashing utility",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"arcjet",
|
|
7
|
+
"hash",
|
|
8
|
+
"utility",
|
|
9
|
+
"util"
|
|
10
|
+
],
|
|
5
11
|
"license": "Apache-2.0",
|
|
6
12
|
"homepage": "https://arcjet.com",
|
|
7
13
|
"repository": {
|
|
@@ -29,28 +35,29 @@
|
|
|
29
35
|
"default": "./index.js"
|
|
30
36
|
},
|
|
31
37
|
"files": [
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
38
|
+
"edge-light.d.ts",
|
|
39
|
+
"edge-light.js",
|
|
40
|
+
"hasher.d.ts",
|
|
41
|
+
"hasher.js",
|
|
42
|
+
"index.d.ts",
|
|
43
|
+
"index.js"
|
|
37
44
|
],
|
|
38
45
|
"scripts": {
|
|
39
|
-
"prepublishOnly": "npm run build",
|
|
40
46
|
"build": "rollup --config rollup.config.js",
|
|
41
47
|
"lint": "eslint .",
|
|
42
|
-
"
|
|
43
|
-
"test": "node --test
|
|
48
|
+
"prepublishOnly": "npm run build",
|
|
49
|
+
"test-api": "node --test",
|
|
50
|
+
"test-coverage": "node --experimental-test-coverage --test",
|
|
51
|
+
"test": "npm run build && npm run lint && npm run test-coverage"
|
|
44
52
|
},
|
|
45
53
|
"dependencies": {},
|
|
46
54
|
"devDependencies": {
|
|
47
|
-
"@arcjet/eslint-config": "1.0.0-beta.
|
|
48
|
-
"@arcjet/rollup-config": "1.0.0-beta.
|
|
49
|
-
"@arcjet/tsconfig": "1.0.0-beta.
|
|
50
|
-
"@rollup/wasm-node": "4.
|
|
55
|
+
"@arcjet/eslint-config": "1.0.0-beta.9",
|
|
56
|
+
"@arcjet/rollup-config": "1.0.0-beta.9",
|
|
57
|
+
"@arcjet/tsconfig": "1.0.0-beta.9",
|
|
58
|
+
"@rollup/wasm-node": "4.44.2",
|
|
51
59
|
"@types/node": "18.18.0",
|
|
52
|
-
"eslint": "9.
|
|
53
|
-
"expect": "29.7.0",
|
|
60
|
+
"eslint": "9.30.1",
|
|
54
61
|
"typescript": "5.8.3"
|
|
55
62
|
},
|
|
56
63
|
"publishConfig": {
|