-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.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
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
80
81
82
83
84
{
"name": "@jantstack/adonis-audit",
"version": "1.0.0",
"description": "Audit trail engine for AdonisJS + Lucid: one transactional store plus fan-out sinks, a Lucid CRUD mixin, polymorphic actors and entities, and a safe-by-default snapshot where auditable \u2286 serializable \u2014 fields hidden from your API never reach the trail.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jantstack/adonis-audit.git"
},
"homepage": "https://github.com/jantstack/adonis-audit#readme",
"bugs": {
"url": "https://github.com/jantstack/adonis-audit/issues"
},
"keywords": [
"adonisjs",
"adonis",
"adonisjs-7",
"adonisjs-package",
"lucid",
"lucid-orm",
"audit",
"audit-log",
"audit-trail",
"activity-log",
"compliance",
"observability",
"event-sourcing",
"typescript",
"esm",
"postgresql",
"mysql",
"sqlite",
"backend"
],
"engines": {
"node": ">=20.6.0"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": "./build/index.js",
"./audit_provider": "./build/providers/audit_provider.js",
"./services/main": "./build/services/main.js",
"./audit_context_middleware": "./build/src/middleware/audit_context_middleware.js",
"./testing": "./build/src/testing/main.js",
"./types": "./build/src/types.js"
},
"files": [
"build",
"README.md"
],
"scripts": {
"build": "npm run check:purity && npm run typecheck && rm -rf build && tsc && npm run copy:stubs",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"prepublishOnly": "npm run build",
"copy:stubs": "mkdir -p build/stubs/config && cp stubs/*.stub build/stubs/ && cp stubs/config/*.stub build/stubs/config/",
"check:purity": "node scripts/check_purity.mjs",
"test": "node --import @poppinss/ts-exec bin/test.ts",
"typecheck:build": "tsc --noEmit"
},
"peerDependencies": {
"@adonisjs/core": "^7.0.0",
"@adonisjs/lucid": "^22.0.0"
},
"dependencies": {
"uuid": "^14.0.0"
},
"devDependencies": {
"@adonisjs/core": "^7.3.1",
"@adonisjs/lucid": "^22.4.2",
"@japa/assert": "^4.2.0",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@types/luxon": "^3.7.2",
"@types/node": "^22.19.1",
"better-sqlite3": "^13.0.1",
"luxon": "^3.7.2",
"typescript": "~5.9.3"
},
"publishConfig": {
"access": "public"
}
}