-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.85 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.85 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
{
"name": "@truenine/memory-sync-cli",
"type": "module",
"version": "2026.10319.10359",
"description": "TrueNine Memory Synchronization CLI",
"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"
],
"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:deps build:napi bundle finalize:bundle generate:schema check",
"build:napi": "tsx ../scripts/copy-napi.ts",
"build:deps": "pnpm -F @truenine/logger -F @truenine/md-compiler -F @truenine/script-runtime run build",
"bundle": "tsx ../scripts/build-quiet.ts",
"check": "run-p typecheck lint",
"finalize:bundle": "tsx scripts/finalize-bundle.ts",
"generate:schema": "tsx scripts/generate-schema.ts",
"lint": "eslint --cache .",
"prepublishOnly": "run-s build",
"test": "run-s build:deps test:run",
"test:run": "vitest run",
"lintfix": "eslint --fix --cache .",
"typecheck": "tsc --noEmit -p tsconfig.lib.json"
},
"dependencies": {
"json5": "catalog:",
"yaml": "2.8.2",
"zod": "catalog:"
},
"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:*"
},
"devDependencies": {
"@clack/prompts": "catalog:",
"@truenine/logger": "workspace:*",
"@truenine/md-compiler": "workspace:*",
"@truenine/script-runtime": "workspace:*",
"@types/fs-extra": "catalog:",
"@types/picomatch": "catalog:",
"@vitest/coverage-v8": "catalog:",
"fast-glob": "catalog:",
"fs-extra": "catalog:",
"jiti": "2.6.1",
"lightningcss": "1.31.1",
"picocolors": "catalog:",
"picomatch": "catalog:",
"tsx": "4.21.0",
"vitest": "catalog:",
"zod-to-json-schema": "catalog:"
}
}