-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "afi-core",
"version": "1.0.0",
"description": "Core runtime for agent signal validation in AFI Protocol",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./validators": {
"import": "./dist/validators/index.js",
"types": "./dist/validators/index.d.ts"
},
"./validators/*": {
"import": "./dist/validators/*",
"types": "./dist/validators/*"
},
"./schemas": {
"import": "./dist/schemas/index.js",
"types": "./dist/schemas/index.d.ts"
},
"./schemas/*": {
"import": "./dist/schemas/*",
"types": "./dist/schemas/*"
},
"./analyst": {
"import": "./dist/src/analyst/index.js",
"require": "./dist/src/analyst/index.js",
"types": "./dist/src/analyst/index.d.ts"
},
"./analyst/*": {
"import": "./dist/src/analyst/*",
"require": "./dist/src/analyst/*",
"types": "./dist/src/analyst/*"
},
"./decay": {
"import": "./dist/src/decay/index.js",
"require": "./dist/src/decay/index.js",
"types": "./dist/src/decay/index.d.ts"
},
"./decay/*": {
"import": "./dist/src/decay/*",
"require": "./dist/src/decay/*",
"types": "./dist/src/decay/*"
},
"./analysts/*": {
"import": "./dist/analysts/*",
"types": "./dist/analysts/*"
}
},
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"prepare": "npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"esm:check": "bash scripts/esm-check.sh"
},
"dependencies": {
"@afi-protocol/afi-math": "git+https://github.com/AFI-Protocol/afi-math.git#6091cbf55cfe17e1b18a18fa5f49a4b084394702",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.19.9",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"keywords": [
"afi",
"validator",
"mentor",
"runtime",
"typescript"
],
"author": "AFI Protocol",
"license": "MIT"
}