You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/packages/types/package.json

24 lines
660 B
JSON

{
"name": "tailchat-types",
"version": "1.0.4",
"description": "Tailchat model types",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"prepare": "pnpm build",
"build": "concurrently npm:build-cjs npm:build-esm",
"build-cjs": "rimraf ./dist/cjs && tsc --outDir dist/cjs",
"build-esm": "rimraf ./dist/esm && tsc --outDir dist/esm --module es2015",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0",
"rimraf": "^3.0.2",
"typescript": "4.9.4"
}
}