@yigemo/choosefire 0.1.0 → 0.2.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/README.md +28 -1
- package/contracts/choosefire-family-wealth/v2/capability-matrix.v1.json +7 -6
- package/contracts/choosefire-family-wealth/v2/golden/r3-holdings.v1.json +311 -0
- package/contracts/choosefire-family-wealth/v2/manifest.json +12 -7
- package/contracts/choosefire-family-wealth/v2/openapi.generated.json +682 -39
- package/contracts/choosefire-family-wealth/v2/runtime-schemas/family-wealth.v2.schema.json +487 -15
- package/dist/commands.js +110 -1
- package/dist/commands.js.map +1 -1
- package/dist/family-wealth-v2-contracts.d.ts +92 -6
- package/dist/family-wealth-v2-contracts.js +1 -1
- package/dist/family-wealth-v2-contracts.js.map +1 -1
- package/dist/family-wealth-v2-http.d.ts +8 -4
- package/dist/family-wealth-v2-http.js +49 -3
- package/dist/family-wealth-v2-http.js.map +1 -1
- package/package.json +16 -2
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yigemo/choosefire",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Command-line tools for ChooseFIRE data operations.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"packageManager": "pnpm@10.33.2",
|
|
6
7
|
"bin": {
|
|
7
8
|
"choosefire": "dist/index.js"
|
|
8
9
|
},
|
|
@@ -11,20 +12,33 @@
|
|
|
11
12
|
"dist",
|
|
12
13
|
"README.md"
|
|
13
14
|
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/YGM-Studio/choosefire-cli.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/YGM-Studio/choosefire-cli/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/YGM-Studio/choosefire-cli#readme",
|
|
14
23
|
"publishConfig": {
|
|
15
|
-
"access": "public"
|
|
24
|
+
"access": "public",
|
|
25
|
+
"registry": "https://registry.npmjs.org/"
|
|
16
26
|
},
|
|
17
27
|
"scripts": {
|
|
18
28
|
"batch5a4:closure:build": "node scripts/build-batch5a4-execution-closure.mjs",
|
|
19
29
|
"build": "tsc -p tsconfig.json && node --input-type=module --eval \"import { chmodSync } from 'node:fs'; chmodSync('dist/index.js', 0o755)\"",
|
|
30
|
+
"check": "pnpm run typecheck && pnpm run build && pnpm run test:portable && pnpm run contract:choosefire-workspace:check && pnpm run contract:choosefire-family-wealth:check && node dist/index.js --help",
|
|
31
|
+
"ci": "pnpm run check && pnpm audit --prod --audit-level high",
|
|
20
32
|
"contract:choosefire-workspace:check": "tsx scripts/check-choosefire-workspace-contract.ts",
|
|
21
33
|
"contract:choosefire-workspace:sync": "tsx scripts/sync-choosefire-workspace-contract.ts",
|
|
22
34
|
"contract:choosefire-family-wealth:check": "tsx scripts/check-choosefire-family-wealth-contract.ts",
|
|
23
35
|
"contract:choosefire-family-wealth:sync": "tsx scripts/check-choosefire-family-wealth-contract.ts --sync-from",
|
|
24
36
|
"dev": "tsx src/index.ts",
|
|
25
37
|
"prepack": "npm run build",
|
|
38
|
+
"release": "node scripts/release.mjs",
|
|
26
39
|
"test": "tsx --test test/*.test.ts",
|
|
27
40
|
"test:batch5a4:closure": "tsx --test test/batch5a4-execution-closure-builder.test.ts",
|
|
41
|
+
"test:portable": "node scripts/run-portable-tests.mjs",
|
|
28
42
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
29
43
|
"start": "node dist/index.js"
|
|
30
44
|
},
|