mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00

- Update `package.json` across multiple packages to include missing newline and add package manager metadata. - Minor README formatting fixes to remove unnecessary trailing spaces.
26 lines
445 B
JSON
26 lines
445 B
JSON
{
|
|
"name": "@open-gsio/schema",
|
|
"version": "0.0.1",
|
|
"description": "Schema for open-gsio",
|
|
"type": "module",
|
|
"module": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./src/index.ts",
|
|
"types": "./src/index.ts"
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2",
|
|
"mobx-state-tree": "^6.0.1"
|
|
}
|
|
}
|