@filamind-app/core 0.1.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/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@filamind-app/core",
3
+ "version": "0.1.0",
4
+ "description": "Shared foundation for the FilaMind suite — Moonraker client, reactive printer state, provenance-stamped values, design tokens, and the widget/plugin registry. Framework-agnostic TypeScript.",
5
+ "license": "GPL-3.0-or-later",
6
+ "repository": { "type": "git", "url": "git+https://github.com/filamind-app/filamind-core.git" },
7
+ "homepage": "https://github.com/filamind-app/filamind-core#readme",
8
+ "bugs": { "url": "https://github.com/filamind-app/filamind-core/issues" },
9
+ "type": "module",
10
+ "main": "./dist/index.js",
11
+ "module": "./dist/index.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }
15
+ },
16
+ "files": ["dist"],
17
+ "sideEffects": false,
18
+ "publishConfig": { "access": "public" },
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format esm --dts --clean",
21
+ "dev": "tsup src/index.ts --format esm --dts --watch",
22
+ "type-check": "tsc --noEmit",
23
+ "test": "vitest run",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "devDependencies": {
27
+ "tsup": "^8.5.1",
28
+ "typescript": "~6.0.3",
29
+ "vitest": "^4.1.9"
30
+ }
31
+ }