Files
lingniu-platform/sdk/frontend/unified-login-sdk/package.json
2026-02-11 11:04:23 +08:00

42 lines
940 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "unified-login-sdk",
"version": "1.0.0",
"description": "TypeScript前端SDK用于前后端分离项目对接统一登录系统",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"dev": "tsc -w",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"oauth2",
"login",
"sdk",
"typescript",
"unified-login"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest-environment-jsdom": "^30.2.0",
"rollup": "^4.9.6",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16.0.0"
}
}