Add initial implementation of Policy Request Library with README,...
Add initial implementation of Policy Request Library with README, configuration files, and utility functions
Showing
.gitignore
0 → 100644
.npmignore
0 → 100644
package-lock.json
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "iaam-libs", | ||
| "version": "1.0.0", | ||
| "description": "Policy request utility for encoding and sending via API headers", | ||
| "main": "dist/index.js", | ||
| "types": "dist/index.d.ts", | ||
| "scripts": { | ||
| "build": "tsc", | ||
| "prepare": "npm run build", | ||
| "test": "jest" | ||
| }, | ||
| "keywords": [ | ||
| "policy", | ||
| "request", | ||
| "base64", | ||
| "headers", | ||
| "react-native" | ||
| ], | ||
| "author": "DSS@NECTEC", | ||
| "license": "MIT", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://git.igridproject.info/iaam/iaam-libs.git" | ||
| }, | ||
| "files": [ | ||
| "dist", | ||
| "README.md", | ||
| "LICENSE" | ||
| ], | ||
| "dependencies": { | ||
| "axios": "^1.13.2", | ||
| "base-64": "^1.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/base-64": "^1.0.0", | ||
| "@types/node": "^20.0.0", | ||
| "typescript": "^5.0.0" | ||
| }, | ||
| "peerDependencies": { | ||
| "react-native": ">=0.60.0" | ||
| }, | ||
| "peerDependenciesMeta": { | ||
| "react-native": { | ||
| "optional": true | ||
| } | ||
| } | ||
| } |
src/index.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment