-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.42 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
{
"name": "loop-engine",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/loopengine/loop-engine"
},
"homepage": "https://loopengine.io",
"bugs": {
"url": "https://github.com/loopengine/loop-engine/issues"
},
"author": "Better Data, Inc. (https://betterdata.co)",
"scripts": {
"build": "turbo run build",
"test": "turbo run test --",
"lint": "turbo run lint && pnpm check-security-metadata",
"typecheck": "turbo run typecheck",
"check-security-metadata": "tsx scripts/check-security-metadata.ts",
"validate-loops": "tsx scripts/validate-loops.ts",
"generate-schemas": "tsx scripts/generate-schemas.ts",
"check-boundary": "tsx scripts/check-boundary.ts",
"changeset": "changeset",
"version-packages": "changeset version",
"validate:publish": "node scripts/check-no-workspace-refs.mjs",
"typecheck:examples": "tsc -p tsconfig.examples.json",
"release": "pnpm validate:publish && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.30.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"turbo": "^2.8.16",
"typescript": "^5.9.3",
"vitest": "^1.6.1",
"zod": "^3.25.76"
},
"packageManager": "pnpm@9.0.0"
}