chore: add monorepo tools (#9196)

This commit is contained in:
liuyi
2024-12-24 15:29:48 +08:00
committed by GitHub
parent e3a8b63e38
commit 2443935830
116 changed files with 9390 additions and 1466 deletions

21
tools/utils/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@affine-tools/utils",
"version": "0.0.1",
"type": "module",
"private": true,
"exports": {
"./path": "./src/path.ts",
"./workspace": "./src/workspace.ts",
"./process": "./src/process.ts",
"./logger": "./src/logger.ts",
"./build-config": "./src/build-config.ts",
"./distribution": "./src/distribution.ts"
},
"dependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.10",
"chalk": "^5.3.0",
"lodash-es": "^4.17.21",
"typescript": "^5.5.4"
}
}