sanctionctl 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +190 -0
  2. package/README.md +179 -0
  3. package/dist/cli.js +2637 -0
  4. package/package.json +55 -0
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "sanctionctl",
3
+ "version": "0.1.0",
4
+ "description": "CLI tool for OFAC/sanctions screening - search individuals and businesses against global sanctions lists",
5
+ "author": "Satyan Avatara <satyan@avataraconsulting.ai>",
6
+ "license": "Apache-2.0",
7
+ "type": "module",
8
+ "main": "dist/index.js",
9
+ "bin": {
10
+ "sanctionctl": "./dist/cli.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "README.md",
15
+ "LICENSE"
16
+ ],
17
+ "scripts": {
18
+ "build": "bun build src/cli.ts --outdir dist --target node",
19
+ "dev": "bun run src/cli.ts",
20
+ "test": "bun test",
21
+ "prepublishOnly": "bun run build"
22
+ },
23
+ "dependencies": {
24
+ "commander": "^12.0.0",
25
+ "chalk": "^5.3.0"
26
+ },
27
+ "devDependencies": {
28
+ "@types/bun": "latest",
29
+ "@types/node": "^20.0.0",
30
+ "typescript": "^5.0.0"
31
+ },
32
+ "keywords": [
33
+ "ofac",
34
+ "sanctions",
35
+ "compliance",
36
+ "aml",
37
+ "kyc",
38
+ "screening",
39
+ "watchlist",
40
+ "fintech",
41
+ "banking",
42
+ "sdn"
43
+ ],
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "https://github.com/rsatyan/sanctionctl.git"
47
+ },
48
+ "homepage": "https://github.com/rsatyan/sanctionctl#readme",
49
+ "bugs": {
50
+ "url": "https://github.com/rsatyan/sanctionctl/issues"
51
+ },
52
+ "engines": {
53
+ "node": ">=18.0.0"
54
+ }
55
+ }