-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 KB
/
package.json
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
{
"name": "@cipherstash/protectjs",
"description": "CipherStash Protect for JavaScript/TypeScript",
"author": "CipherStash <[email protected]>",
"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": [
"apps/*",
"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.3",
"@changesets/cli": "^2.28.1",
"@types/node": "^22.10.2",
"rimraf": "6.0.1",
"turbo": "2.1.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"@babel/runtime": "7.26.10"
}
}
}