20 lines
374 B
JSON
20 lines
374 B
JSON
{
|
|
"name": "@workspace/utils",
|
|
"version": "1.0.0",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.ts",
|
|
"types": "./index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"lint": "eslint src --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rimraf dist"
|
|
}
|
|
}
|