micro/package.json

22 lines
530 B
JSON

{
"name": "micro",
"version": "1.0.0",
"repository": "https://github.com/sylv/micro.git",
"author": "Ryan <ryan@sylver.me>",
"license": "GPL-3.0",
"private": true,
"packageManager": "pnpm@7.0.0",
"engines": {
"node": ">=16 <17",
"pnpm": ">=7"
},
"scripts": {
"lint": "turbo run lint",
"build": "turbo run build",
"test": "turbo run test",
"clean": "rm -rf ./packages/*/{tsconfig.tsbuildinfo,lib,dist,yarn-error.log,.next}"
},
"devDependencies": {
"turbo": "1.3.2-canary.0"
}
}