15 lines
451 B
JSON
15 lines
451 B
JSON
{
|
|
"name": "@sammo-ts/build-scripts",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"dev": "node -e \"console.log('dev not configured')\"",
|
|
"lint": "node -e \"console.log('lint not configured')\"",
|
|
"test": "node -e \"console.log('test not configured')\"",
|
|
"typecheck": "tsc -b",
|
|
"build:server": "node ./build-server.mjs"
|
|
}
|
|
}
|