-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "@cipherstash/stack-monorepo",
"description": "CipherStash Stack for JavaScript/TypeScript",
"private": true,
"author": "CipherStash <humans@cipherstash.com>",
"keywords": [
"encrypted",
"query",
"language",
"typescript",
"ts",
"eql"
],
"bugs": {
"url": "https://github.com/cipherstash/stack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cipherstash/stack.git"
},
"license": "MIT",
"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",
"lint:runners": "node scripts/lint-no-hardcoded-runners.mjs",
"lint:workflow-cache": "node scripts/lint-no-workflow-caching.mjs",
"release": "pnpm run build && changeset publish",
"test": "turbo test --filter './packages/*'",
"test:e2e": "turbo run test:e2e",
"test:scripts": "vitest run --config scripts/vitest.config.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.19.19",
"js-yaml": "^4.2.0",
"rimraf": "^6.1.3",
"turbo": "2.9.14",
"vitest": "catalog:repo"
},
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/pg",
"pg",
"postgres"
],
"allowedVersions": {
"drizzle-orm": "*"
}
},
"dedupe-peer-dependents": true,
"onlyBuiltDependencies": [
"node-pty"
]
}
}