-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (59 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (59 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "chenaikit",
"version": "0.1.0",
"description": "A TypeScript toolkit for building AI-powered blockchain applications",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"tests/*"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"clean": "pnpm -r clean",
"type-check": "pnpm -r type-check",
"backend:build": "cd packages/core && pnpm build && cd ../cli && pnpm build && cd ../../backend && pnpm build",
"backend:test": "echo 'Tests commented out - see issue templates for test implementation'",
"blockchain:build": "cd contracts/credit-score && cargo build && cd ../fraud-detect && cargo build && cd ../common-utils && cargo build",
"blockchain:test": "echo 'Blockchain tests commented out - Soroban SDK compatibility issues'",
"frontend:build": "cd examples/credit-scoring-app && pnpm build && cd ../wallet-chatbot && pnpm build && cd ../fraud-detection-service && pnpm build && cd ../../frontend && pnpm build",
"frontend:test": "echo 'Tests commented out - see issue templates for test implementation'"
},
"keywords": [
"stellar",
"soroban",
"ai",
"blockchain",
"typescript",
"sdk",
"credit-scoring",
"fraud-detection"
],
"author": "ChenAIKit Team",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"prettier": "^3.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nexoraorg/chenaikit.git"
},
"bugs": {
"url": "https://github.com/nexoraorg/chenaikit/issues"
},
"homepage": "https://github.com/nexoraorg/chenaikit#readme"
}