initial release build

This commit is contained in:
2026-04-21 19:19:56 +00:00
parent c3ded5a61f
commit 0d92b370f9
22 changed files with 6121 additions and 0 deletions

35
package.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "@jlinc/sdk",
"version": "1.0.0",
"description": "JLINC SDK for utilizing the JLINC API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc --project tsconfig.build.json && cp src/index.js dist/"
},
"homepage": "https://www.jlinc.com/",
"repository": {
"type": "git",
"url": "https://gitea.jlinc.io/jlinc-labs/jlinc-library-node"
},
"keywords": [
"jlinc",
"audit",
"governance",
"authorization"
],
"author": "Ben Curtis",
"license": "MIT",
"dependencies": {
"axios": "^1.14.0"
},
"devDependencies": {
"dotenv": "^17.4.1",
"jest": "^30.3.0",
"typescript": "^6.0.2"
},
"files": [
"dist/*"
]
}