-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.77 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.77 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
{
"name": "@pmatrix/field-node-runtime",
"version": "0.2.0",
"description": "P-MATRIX 4.0 Field Node Runtime — State Vector exchange, peer verification, local decision and enforcement for CLI Monitor integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE",
"SECURITY.md",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --passWithNoTests",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.4.0"
},
"keywords": [
"pmatrix",
"field",
"node-runtime",
"4.0",
"state-vector",
"governance",
"agent",
"verification"
],
"author": "P-MATRIX <architect@p-matrix.io>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/p-matrix/field-node-runtime/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://github.com/p-matrix/field-node-runtime#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/p-matrix/field-node-runtime.git"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": ["ts-jest", { "diagnostics": { "ignoreCodes": [151002] } }]
}
}
}