-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 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
{
"name": "@cipherstash/protectjs",
"description": "CipherStash Protect for JavaScript/TypeScript",
"author": "CipherStash <hello@cipherstash.com>",
"keywords": [
"encrypted",
"query",
"language",
"typescript",
"ts",
"eql"
],
"bugs": {
"url": "https://github.com/cipherstash/protectjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherstash/protectjs.git"
},
"license": "MIT",
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"build": "turbo build --filter './packages/*'",
"build:js": "turbo build --filter './packages/protect' --filter './packages/nextjs'",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"dev": "turbo dev --filter './packages/*'",
"clean": "rimraf --glob **/.next **/.turbo **/dist **/node_modules",
"code:fix": "biome check --write",
"release": "pnpm run build && changeset publish",
"test": "turbo test --filter './packages/*'"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.6",
"@types/node": "^22.15.12",
"rimraf": "^6.1.2",
"turbo": "2.1.1"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"@babel/runtime": "7.26.10",
"body-parser": "2.2.1",
"vite": "catalog:security",
"pg": "^8.16.3",
"postgres": "^3.4.7",
"js-yaml": "3.14.2",
"test-exclude": "^7.0.1",
"glob": ">=11.1.0",
"qs": ">=6.14.1",
"lodash": ">=4.17.23",
"minimatch": ">=10.2.3",
"@isaacs/brace-expansion": ">=5.0.1",
"fast-xml-parser": ">=5.3.4",
"next": ">=15.5.10",
"ajv": ">=8.18.0",
"esbuild@<=0.24.2": ">=0.25.0",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0"
},
"peerDependencyRules": {
"ignoreMissing": [
"@types/pg",
"pg",
"postgres"
],
"allowedVersions": {
"drizzle-orm": "*"
}
},
"dedupe-peer-dependents": true
}
}