-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "pot-sdk",
"version": "2.0.0",
"description": "ThoughtProof SDK - Multi-model verification for AI outputs",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"ai",
"verification",
"multi-model",
"proof-of-thought",
"sdk"
],
"author": "ThoughtProof",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^20",
"eslint": "^8",
"pot-sandbox": "file:../pot-sandbox",
"prettier": "^3",
"tsup": "^8",
"typescript": "^5",
"vitest": "^1"
},
"optionalDependencies": {
"pot-sandbox": "^0.2.0"
},
"peerDependencies": {
"pot-sandbox": "^0.2.0"
},
"peerDependenciesMeta": {
"pot-sandbox": {
"optional": true
}
}
}