mirror of https://github.com/msgbyte/tailchat
feat: add tailchat-client-sdk package
parent
eecac23d9a
commit
94b56f0af5
@ -0,0 +1 @@
|
|||||||
|
lib
|
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"name": "tailchat-client-sdk",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "lib/index.js",
|
||||||
|
"scripts": {
|
||||||
|
"prepare": "tsc",
|
||||||
|
"release": "npm publish --registry https://registry.npmjs.com/",
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "moonrailgun <moonrailgun@gmail.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"devDependencies": {
|
||||||
|
"typescript": "^4.9.5"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"axios": "^1.3.2"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
export * from './plugins/simplenotify';
|
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "esnext",
|
||||||
|
"lib": ["ESNext"],
|
||||||
|
"outDir": "lib",
|
||||||
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"module": "CommonJS",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"strict": true,
|
||||||
|
"importsNotUsedAsValues": "error",
|
||||||
|
},
|
||||||
|
"include": ["./src/*"]
|
||||||
|
}
|
Loading…
Reference in New Issue