@casual-simulation/crypto-browser 3.5.0 → 3.10.3-alpha.20787554310
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 +44 -45
package/package.json
CHANGED
|
@@ -1,46 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
2
|
+
"name": "@casual-simulation/crypto-browser",
|
|
3
|
+
"version": "3.10.3-alpha.20787554310",
|
|
4
|
+
"description": "An implemenation of @casual-simulation/crypto for web browsers.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"crypto"
|
|
7
|
+
],
|
|
8
|
+
"author": "Casual Simulation, Inc.",
|
|
9
|
+
"homepage": "https://github.com/casual-simulation/casualos",
|
|
10
|
+
"license": "AGPL-3.0-only",
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"types": "index.d.ts",
|
|
13
|
+
"module": "index",
|
|
14
|
+
"directories": {
|
|
15
|
+
"lib": "."
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"/README.md",
|
|
19
|
+
"/LICENSE.txt",
|
|
20
|
+
"**/*.js",
|
|
21
|
+
"**/*.js.map",
|
|
22
|
+
"**/*.d.ts"
|
|
23
|
+
],
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/casual-simulation/casualos.git"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/casual-simulation/casualos/issues"
|
|
30
|
+
},
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@casual-simulation/crypto": "^3.10.3-alpha.20787554310",
|
|
36
|
+
"bowser": "^2.4.0"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"watch": "tsc --watch",
|
|
40
|
+
"watch:player": "npm run watch",
|
|
41
|
+
"build": "echo \"Nothing to do.\"",
|
|
42
|
+
"test": "jest",
|
|
43
|
+
"test:watch": "jest --watchAll"
|
|
44
|
+
}
|
|
45
|
+
}
|