package.json26 lines · main
1{
2 "name": "@briven/config",
3 "version": "0.0.0",
4 "private": true,
5 "description": "Shared tsconfig, eslint, prettier, and tailwind v4 base for the briven monorepo",
6 "type": "module",
7 "exports": {
8 "./tsconfig/base.json": "./tsconfig/base.json",
9 "./tsconfig/next.json": "./tsconfig/next.json",
10 "./tsconfig/node.json": "./tsconfig/node.json",
11 "./tsconfig/bun.json": "./tsconfig/bun.json",
12 "./tsconfig/react-library.json": "./tsconfig/react-library.json",
13 "./eslint/base": "./eslint/base.js",
14 "./eslint/next": "./eslint/next.js",
15 "./eslint/react": "./eslint/react.js",
16 "./tailwind/theme.css": "./tailwind/theme.css"
17 },
18 "files": [
19 "tsconfig",
20 "eslint",
21 "tailwind"
22 ],
23 "devDependencies": {
24 "typescript": "^6.0.3"
25 }
26}