@nirnex/hooks 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // hooks package — placeholder for lifecycle hooks
2
+ // (pre-index, post-index, on-gate-fail, etc.)
3
+ // Will be populated as the system grows.
4
+ export {};
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,kDAAkD;AAClD,8CAA8C;AAC9C,yCAAyC"}
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@nirnex/hooks",
3
+ "version": "2.0.3",
4
+ "description": "Nirnex hooks — Git and CI lifecycle hooks",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc --build",
20
+ "clean": "rm -rf dist"
21
+ },
22
+ "engines": {
23
+ "node": ">=24"
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/nirnex-ai/nirnex.git",
28
+ "directory": "packages/hooks"
29
+ },
30
+ "license": "MIT",
31
+ "devDependencies": {
32
+ "typescript": "^5.4.0"
33
+ }
34
+ }