@astrox/identity 0.0.8 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrox/identity",
3
- "version": "0.0.8",
3
+ "version": "0.0.13",
4
4
  "author": "DFINITY Stiftung <sdk@astrox.org>",
5
5
  "license": "Apache-2.0",
6
6
  "description": "JavaScript and TypeScript library to manage identity with the Internet Computer",
@@ -28,25 +28,15 @@
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "scripts": {
32
- "build": "tsc -b && tsc -p tsconfig-cjs.json",
33
- "bundle": "npm run build",
34
- "lint": "eslint 'src' --ext '.js,.jsx,.ts,.tsx'",
35
- "lint:fix": "npm run lint -- --fix",
36
- "make:docs/reference": "typedoc src/index.ts --out ../../docs/generated/identity",
37
- "release": "npm publish",
38
- "test": "jest",
39
- "test:coverage": "jest --verbose --collectCoverage"
40
- },
41
31
  "dependencies": {
42
- "@astrox/agent": "^0.0.8",
43
- "@astrox/principal": "^0.0.8",
44
32
  "borc": "^2.1.1",
33
+ "secp256k1": "^4.0.2",
45
34
  "tweetnacl": "^1.0.1"
46
35
  },
47
36
  "devDependencies": {
48
37
  "@trust/webcrypto": "^0.9.2",
49
38
  "@types/jest": "^24.9.1",
39
+ "@types/secp256k1": "^4.0.3",
50
40
  "@typescript-eslint/eslint-plugin": "^4.14.2",
51
41
  "@typescript-eslint/parser": "^4.14.2",
52
42
  "eslint": "^7.19.0",
@@ -60,5 +50,5 @@
60
50
  "typescript": "^4.2.3",
61
51
  "whatwg-fetch": "^3.0.0"
62
52
  },
63
- "gitHead": "5a83a050634bbf6c6d55ed8efb46e83bc2a927d2"
53
+ "gitHead": "bd8bbdfa92630468257e7c86429170a07b4b889b"
64
54
  }
package/types/borc.d.ts CHANGED
@@ -12,6 +12,6 @@ declare module 'borc' {
12
12
  class Tagged {
13
13
  tag: number;
14
14
  value: any;
15
- constructor(tag: Number, value: any);
15
+ constructor(tag: number, value: any);
16
16
  }
17
17
  }