-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "cipherstash",
"description": "Encrypted Query Language JavaScript/TypeScript Library",
"author": "CipherStash <hello@cipherstash.com>",
"keywords": [
"encrypted",
"query",
"language",
"typescript",
"ts",
"eql"
],
"bugs": {
"url": "https://github.com/cipherstash/jseql/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherstash/jseql.git"
},
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build --filter './packages/*'",
"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": "turbo run build && changeset publish",
"test": "turbo test --filter './packages/*'"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.10.2",
"rimraf": "6.0.1",
"turbo": "2.1.1"
},
"packageManager": "pnpm@9.15.3",
"engines": {
"node": ">=20"
}
}