21 lines
517 B
JSON
21 lines
517 B
JSON
{
|
|
"name": "@dwengo-1/common",
|
|
"version": "0.1.1",
|
|
"description": "Common types and utilities for Dwengo-1",
|
|
"private": true,
|
|
"type": "module",
|
|
"files": [
|
|
"./dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"clean": "tsc --build --clean",
|
|
"watch": "tsc --build --watch",
|
|
"format": "prettier --write src/",
|
|
"format-check": "prettier --check src/",
|
|
"lint": "eslint . --fix"
|
|
},
|
|
"exports": {
|
|
"./*": "./dist/*.js"
|
|
}
|
|
}
|