@shipfox/api-secrets 4.0.0 → 5.0.0
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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +17 -0
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +20 -36
- package/tsconfig.build.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/api-secrets",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -13,57 +13,41 @@
|
|
|
13
13
|
"types": "dist/index.d.ts",
|
|
14
14
|
"imports": {
|
|
15
15
|
"#test/*": "./test/*",
|
|
16
|
-
"#*":
|
|
17
|
-
"workspace-source": "./src/*",
|
|
18
|
-
"development": "./src/*",
|
|
19
|
-
"default": "./dist/*"
|
|
20
|
-
}
|
|
16
|
+
"#*": "./dist/*"
|
|
21
17
|
},
|
|
22
18
|
"exports": {
|
|
23
19
|
".": {
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
"default": "./src/index.ts"
|
|
27
|
-
},
|
|
28
|
-
"default": {
|
|
29
|
-
"types": "./dist/index.d.ts",
|
|
30
|
-
"default": "./dist/index.js"
|
|
31
|
-
}
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
32
22
|
},
|
|
33
23
|
"./core/errors": {
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
"default": "./src/core/errors.ts"
|
|
37
|
-
},
|
|
38
|
-
"default": {
|
|
39
|
-
"types": "./dist/core/errors.d.ts",
|
|
40
|
-
"default": "./dist/core/errors.js"
|
|
41
|
-
}
|
|
24
|
+
"types": "./dist/core/errors.d.ts",
|
|
25
|
+
"default": "./dist/core/errors.js"
|
|
42
26
|
}
|
|
43
27
|
},
|
|
44
28
|
"dependencies": {
|
|
45
29
|
"drizzle-orm": "^0.45.2",
|
|
46
30
|
"zod": "^4.4.3",
|
|
47
|
-
"@shipfox/api-auth-context": "
|
|
48
|
-
"@shipfox/api-projects": "
|
|
49
|
-
"@shipfox/api-secrets-dto": "
|
|
50
|
-
"@shipfox/config": "1.2.
|
|
51
|
-
"@shipfox/node-drizzle": "0.3.
|
|
52
|
-
"@shipfox/node-fastify": "0.2.
|
|
53
|
-
"@shipfox/node-module": "0.3.
|
|
54
|
-
"@shipfox/node-opentelemetry": "0.5.
|
|
55
|
-
"@shipfox/node-outbox": "0.2.
|
|
56
|
-
"@shipfox/node-postgres": "0.4.
|
|
31
|
+
"@shipfox/api-auth-context": "5.0.0",
|
|
32
|
+
"@shipfox/api-projects": "5.0.0",
|
|
33
|
+
"@shipfox/api-secrets-dto": "5.0.0",
|
|
34
|
+
"@shipfox/config": "1.2.2",
|
|
35
|
+
"@shipfox/node-drizzle": "0.3.1",
|
|
36
|
+
"@shipfox/node-fastify": "0.2.3",
|
|
37
|
+
"@shipfox/node-module": "0.3.2",
|
|
38
|
+
"@shipfox/node-opentelemetry": "0.5.2",
|
|
39
|
+
"@shipfox/node-outbox": "0.2.3",
|
|
40
|
+
"@shipfox/node-postgres": "0.4.2"
|
|
57
41
|
},
|
|
58
42
|
"devDependencies": {
|
|
59
43
|
"@types/pg": "^8.15.5",
|
|
60
44
|
"drizzle-kit": "^0.31.10",
|
|
61
45
|
"fastify": "^5.3.3",
|
|
62
|
-
"@shipfox/biome": "1.8.
|
|
63
|
-
"@shipfox/swc": "1.2.
|
|
46
|
+
"@shipfox/biome": "1.8.2",
|
|
47
|
+
"@shipfox/swc": "1.2.6",
|
|
64
48
|
"@shipfox/ts-config": "1.3.8",
|
|
65
|
-
"@shipfox/typescript": "1.1.
|
|
66
|
-
"@shipfox/vitest": "1.2.
|
|
49
|
+
"@shipfox/typescript": "1.1.7",
|
|
50
|
+
"@shipfox/vitest": "1.2.3"
|
|
67
51
|
},
|
|
68
52
|
"scripts": {
|
|
69
53
|
"build": "shipfox-swc",
|