@bitgo/public-types 0.0.0-rc.1 → 1.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ # public-types
2
+
3
+ [![Build Status]](https://github.com/BitGo/public-types/actions/workflows/release.yml)
4
+
5
+ [build status]: https://github.com/BitGo/public-types/actions/workflows/release.yml/badge.svg?event=push
6
+
7
+ Collection of types exposed externally as part of the BitGo public API
@@ -0,0 +1,2 @@
1
+ export declare function hello(): string;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,wBAAgB,KAAK,IAAI,MAAM,CAE9B"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.hello = void 0;
4
+ function hello() {
5
+ return "world";
6
+ }
7
+ exports.hello = hello;
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,SAAgB,KAAK;IACnB,OAAO,OAAO,CAAC;AACjB,CAAC;AAFD,sBAEC"}
package/package.json CHANGED
@@ -1,15 +1,29 @@
1
1
  {
2
2
  "name": "@bitgo/public-types",
3
- "version": "0.0.0-rc.1",
4
- "description": "",
5
- "main": "index.js",
3
+ "version": "1.0.0",
4
+ "description": "Collection of types exposed externally as part of the BitGo public API",
5
+ "license": "UNLICENSED",
6
+ "author": "",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/BitGo/public-types.git"
10
+ },
11
+ "main": "dist/src/index.js",
12
+ "types": "dist/src/index.d.ts",
13
+ "files": [
14
+ "dist/src/"
15
+ ],
6
16
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
17
+ "build": "tsc --build --incremental --verbose .",
18
+ "clean": "rm -rf -- dist",
19
+ "test": "c8 node --import tsx --test test/*.test.ts"
8
20
  },
9
- "keywords": [],
10
- "author": "",
11
- "license": "UNLICENSED",
12
- "publishConfig": {
13
- "access": "public"
21
+ "devDependencies": {
22
+ "@types/node": "20.8.10",
23
+ "c8": "8.0.1",
24
+ "tsx": "3.14.0",
25
+ "typescript": "5.2.2",
26
+ "@semantic-release/git": "10.0.1",
27
+ "semantic-release": "22.0.7"
14
28
  }
15
- }
29
+ }