-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.55 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.55 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@predicatesystems/predicate-secure",
"version": "0.2.0",
"description": "Drop-in security wrapper for AI agents - adds authorization, verification, and audit to any agent framework",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"demo": "tsx demo/secure-browser-demo.ts",
"demo:install": "npm install playwright chalk dotenv && npx playwright install chromium"
},
"keywords": [
"ai",
"agents",
"security",
"authorization",
"verification",
"browser-use",
"langchain",
"playwright",
"predicate",
"typescript"
],
"author": "Predicate Systems Contributors",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PredicateSystems/predicate-secure-ts.git"
},
"bugs": {
"url": "https://github.com/PredicateSystems/predicate-secure-ts/issues"
},
"homepage": "https://github.com/PredicateSystems/predicate-secure-ts#readme",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@langchain/core": ">=0.1.0",
"playwright": ">=1.40.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"@langchain/core": {
"optional": true
}
},
"devDependencies": {
"@predicatesystems/runtime": "^1.1.0",
"@types/node": "^25.3.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"playwright": "^1.40.0",
"prettier": "^3.2.0",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.56.1",
"vitest": "^2.0.0"
}
}