-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.02 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "contextfence",
"version": "0.2.0",
"type": "module",
"description": "Playwright for RAG permissions — prove restricted context stays restricted.",
"license": "Apache-2.0",
"author": "Devector Consulting Ltd <dev@devector.io> (https://www.devector.io)",
"repository": {
"type": "git",
"url": "git+https://github.com/devectorio/contextfence.git"
},
"bugs": {
"url": "https://github.com/devectorio/contextfence/issues"
},
"homepage": "https://www.devector.io/labs/contextfence",
"keywords": [
"rag",
"llm",
"rag-testing",
"rag-security",
"ai-security",
"authorization",
"access-control",
"security-testing",
"regression-testing",
"github-actions",
"devsecops",
"cli"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"funding": "https://devectorio.github.io/contextfence/#assessment",
"main": "./dist/package/index.js",
"types": "./dist/package/types/public.d.ts",
"exports": {
".": {
"types": "./dist/package/types/public.d.ts",
"import": "./dist/package/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"contextfence": "dist/package/cli.js"
},
"files": [
"dist/package",
"examples/contracts",
"examples/manifests",
"docs",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CITATION.cff",
"CONTRIBUTING.md",
"GOVERNANCE.md",
"LICENSE",
"NOTICE",
"SUPPORT.md",
"THIRD_PARTY_NOTICES.txt",
"README.md",
"SECURITY.md",
"public/og.svg"
],
"sideEffects": false,
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"dev": "vite",
"build": "pnpm run build:web && pnpm run build:package",
"build:web": "tsc -b && vite build",
"build:package": "pnpm run build:package:js && pnpm run build:package:types",
"build:package:js": "vite build --config vite.release.config.ts",
"build:package:types": "tsc -p tsconfig.release.json --pretty false",
"preview": "vite preview",
"lint": "eslint .",
"typecheck": "tsc -b --pretty false",
"test": "vitest run",
"test:watch": "vitest",
"notices": "node scripts/generate-third-party-notices.mjs",
"verify": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"release:check": "node scripts/release-check.mjs",
"prepack": "pnpm run build:package"
},
"dependencies": {
"yaml": "2.9.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@fontsource-variable/manrope": "5.2.8",
"@fontsource/dm-mono": "5.2.7",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"eslint": "10.6.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"globals": "16.3.0",
"jsdom": "29.1.1",
"lucide-react": "1.23.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0",
"vite": "8.1.4",
"vitest": "4.1.10"
},
"packageManager": "pnpm@11.0.8"
}