@0x57/internal-client 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # internal-client
2
+
3
+ TODO: Write docs!
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@0x57/internal-client",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "exports": {
6
+ ".": "./dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "tsc",
13
+ "clean": "rimraf dist .turbo",
14
+ "prettier": "prettier src/**/*.ts --check",
15
+ "typecheck": "tsc --noEmit",
16
+ "lint": "eslint . --max-warnings 0",
17
+ "prepublish": "npm run clean && npm run build"
18
+ },
19
+ "dependencies": {}
20
+ }