This repository was archived by the owner on May 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.2 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
{
"name": "@snapback/sdk",
"description": "Production-ready TypeScript SDK for building code safety systems - snapshots, protection, and risk analysis in one powerful library",
"version": "0.1.2",
"author": "SnapBack Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Marcelle-Labs/snapback.dev.git",
"directory": "packages-oss/sdk"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist-types/index.d.ts",
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "catalog:",
"@aws-sdk/s3-request-presigner": "catalog:",
"@snapback-oss/contracts": "workspace:*",
"@snapback-oss/infrastructure": "workspace:*",
"ky": "catalog:",
"minimatch": "catalog:",
"ow": "catalog:",
"p-retry": "catalog:",
"quick-lru": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@types/better-sqlite3": "catalog:",
"@types/node": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.js"
},
"./storage": {
"types": "./dist-types/storage/index.d.ts",
"default": "./dist/storage/index.js"
},
"./session": {
"types": "./dist-types/session/index.d.ts",
"default": "./dist/session/index.js"
}
},
"files": [
"dist",
"dist-types"
],
"keywords": [
"api",
"client",
"sdk",
"snapback",
"oss"
],
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly --outDir dist-types -p tsconfig.build.json",
"check": "biome check .",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"test": "vitest run",
"test:api": "vitest run tests/api/",
"test:coverage": "vitest run --coverage",
"test:coverage:integration": "vitest run tests/integration/ --coverage",
"test:coverage:unit": "vitest run tests/ --coverage",
"test:e2e": "vitest run tests/e2e/",
"test:integration": "vitest run tests/integration/",
"test:unit": "vitest run tests/",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
}
}