micro/package.json

26 lines
665 B
JSON
Raw Permalink Normal View History

2020-08-27 13:00:30 +00:00
{
"name": "micro",
"version": "1.0.0",
2024-01-07 04:19:16 +00:00
"license": "GPL-3.0",
2020-08-27 13:00:30 +00:00
"repository": "https://github.com/sylv/micro.git",
"author": "Ryan <ryan@sylver.me>",
2020-10-06 18:52:28 +00:00
"private": true,
2022-06-23 19:49:19 +00:00
"engines": {
2022-10-07 14:35:56 +00:00
"node": ">=16",
"pnpm": ">=9"
2021-07-13 11:41:24 +00:00
},
"scripts": {
2022-06-23 19:49:19 +00:00
"build": "turbo run build",
2024-01-07 04:19:16 +00:00
"clean": "rm -rf ./packages/*/{tsconfig.tsbuildinfo,lib,dist,yarn-error.log,.next}",
"lint": "turbo run lint",
"sync": "syncpack format && syncpack fix-mismatches",
"test": "turbo run test"
},
"devDependencies": {
"@atlasbot/configs": "^10.6.1",
"@biomejs/biome": "^1.7.3",
"syncpack": "^12.3.2",
"turbo": "1.13.3",
"typescript": "^5.4.5"
}
}