Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
24 lines
451 B
JSON
24 lines
451 B
JSON
{
|
|
"name": "@mosaic/types",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "echo 'ok'",
|
|
"test": "echo 'ok'"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|