-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "@lyght/saga",
"version": "0.0.1",
"description": "Local transaction management library with rollback support for Node.js applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "pnpm lint:fix && pnpm typecheck && tsup",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"test:cov": "vitest run --coverage",
"test:ui": "vitest ui",
"lint": "pnpm exec biome check",
"lint:fix": "pnpm exec biome check --write",
"format": "pnpm exec biome format --write",
"prepublishOnly": "pnpm build"
},
"keywords": [
"transaction",
"rollback",
"local-transaction",
"saga",
"async",
"decorator",
"typescript",
"nodejs"
],
"author": "jrjr519",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jrjr519/saga.git"
},
"bugs": {
"url": "https://github.com/jrjr519/saga/issues"
},
"homepage": "https://github.com/jrjr519/saga#readme",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.23",
"@vitest/coverage-v8": "^3.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.2",
"vitest": "^3.1.4"
},
"packageManager": "[email protected]+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}