-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "kiji-privacy-proxy",
"productName": "Kiji Privacy Proxy",
"version": "0.5.0",
"description": "Dataiku's Kiji Privacy Proxy - PII detection and masking proxy for LLMs",
"author": "Dataiku - Open Source Lab",
"license": "Apache-2.0",
"private": true,
"_comment": "NOTE: Version must be kept in sync with src/frontend/package.json",
"workspaces": [
"src/frontend"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@electron/notarize": "^3.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dataiku/kiji-proxy"
},
"keywords": [
"pii",
"privacy",
"proxy",
"llm",
"openai",
"data-protection"
],
"scripts": {
"build": "cd src/frontend && npm run build",
"build:electron": "cd src/frontend && npm run build:electron",
"dev": "cd src/frontend && npm run dev",
"electron": "cd src/frontend && npm run electron",
"electron:dev": "cd src/frontend && npm run electron:dev",
"electron:pack": "cd src/frontend && npm run electron:pack",
"lint": "cd src/frontend && npm run lint",
"lint:fix": "cd src/frontend && npm run lint:fix",
"type-check": "cd src/frontend && npm run type-check",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}