-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.96 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.96 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@truenine/memory-sync-cli",
"type": "module",
"version": "2026.10406.121",
"description": "TrueNine Memory Synchronization CLI shell",
"author": "TrueNine",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/TrueNine/memory-sync",
"repository": {
"type": "git",
"url": "git+https://github.com/TrueNine/memory-sync.git",
"directory": "cli"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./globals": {
"types": "./dist/globals.d.mts",
"import": "./dist/globals.mjs"
},
"./schema.json": "./dist/tnmsc.schema.json",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"tnmsc": "./dist/index.mjs"
},
"files": [
"dist",
"dist/tnmsc.schema.json"
],
"engines": {
"node": ">= 22"
},
"napi": {
"binaryName": "napi-memory-sync-cli",
"targets": [
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-apple-darwin"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "run-s build:sdk build:shell sync:sdk-assets",
"build:sdk": "pnpm -F @truenine/memory-sync-sdk run build",
"build:napi:copy": "tsx ../scripts/copy-napi.ts",
"build:shell": "tsdown",
"ensure:sdk-build": "tsx scripts/ensure-sdk-build.ts",
"sync:sdk-assets": "tsx scripts/sync-sdk-dist.ts",
"check": "run-s ensure:sdk-build check:run",
"check:run": "run-p lint:run check:type:run",
"lint": "run-s ensure:sdk-build lint:run",
"lint:run": "eslint --cache --cache-location .eslintcache .",
"prepublishOnly": "run-s build check",
"test": "run-s ensure:sdk-build test:run",
"test:run": "vitest run",
"lint:fix": "run-s ensure:sdk-build lint:fix:run",
"lint:fix:run": "eslint --fix --cache --cache-location .eslintcache .",
"typecheck": "run-s ensure:sdk-build check:type:run",
"check:type:run": "tsc --noEmit -p tsconfig.lib.json"
},
"dependencies": {},
"optionalDependencies": {
"@truenine/memory-sync-cli-darwin-arm64": "workspace:*",
"@truenine/memory-sync-cli-darwin-x64": "workspace:*",
"@truenine/memory-sync-cli-linux-arm64-gnu": "workspace:*",
"@truenine/memory-sync-cli-linux-x64-gnu": "workspace:*",
"@truenine/memory-sync-cli-win32-x64-msvc": "workspace:*",
"@truenine/script-runtime": "workspace:*",
"json5": "catalog:",
"yaml": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@truenine/eslint10-config": "catalog:",
"@truenine/memory-sync-sdk": "workspace:*",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"npm-run-all2": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}