initial commit
This commit is contained in:
14
package.json
14
package.json
@@ -2,10 +2,20 @@
|
||||
"name": "tap-sdk-js",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"exports": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
||||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
||||
"prepublishOnly": "tsc"
|
||||
},
|
||||
"files": "dist",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts"
|
||||
}
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "minco",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createClient } from "../src/core/client.js";
|
||||
import { createClient } from "../src/index.js";
|
||||
|
||||
describe("blah", () => {
|
||||
test("works", async () => {
|
||||
|
||||
Reference in New Issue
Block a user