initial commit

This commit is contained in:
2025-07-04 14:44:25 +09:00
parent cff0d5d1c5
commit 363a728c09
2 changed files with 13 additions and 3 deletions

View File

@@ -2,10 +2,20 @@
"name": "tap-sdk-js", "name": "tap-sdk-js",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "index.js", "exports": "dist/index.js",
"scripts": { "scripts": {
"build": "tsc", "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": [], "keywords": [],
"author": "minco", "author": "minco",

View File

@@ -1,4 +1,4 @@
import { createClient } from "../src/core/client.js"; import { createClient } from "../src/index.js";
describe("blah", () => { describe("blah", () => {
test("works", async () => { test("works", async () => {