-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "https://json.schemastore.org/package",
"name": "@dexaai/config",
"version": "0.0.10",
"description": "Shared config for Dexa's TypeScript projects",
"repository": "dexaai/config",
"license": "MIT",
"author": "Riley Tomasek <riley@dexa.ai>",
"type": "module",
"main": "index.js",
"files": [
"config"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": "./index.js",
"./prettier": "./config/prettier.js",
"./tsconfig-node": "./config/tsconfig-node.json",
"./typescript-react": "./config/tsconfig-react.json",
"./reset.d.ts": "./config/reset.d.ts",
"./eslint": "./config/eslint.js",
"./package.json": "./package.json"
},
"scripts": {
"fix": "eslint . --fix && prettier . --write",
"lint": "eslint .",
"prepublishOnly": "bun run typecheck && bun run lint",
"release": "np",
"test": "exit 0",
"typecheck": "tsc"
},
"prettier": "./config/prettier.js",
"dependencies": {
"@eslint/js": "^9.22.0",
"@total-typescript/ts-reset": "^0.6.1",
"@vitest/eslint-plugin": "^1.1.37",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-perfectionist": "^4.10.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^16.0.0",
"typescript-eslint": "^8.26.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"eslint": "^9.22.0",
"np": "^10.2.0",
"react": "^18.3.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"peerDependencies": {
"eslint": ">= 9",
"prettier": ">= 3",
"typescript": ">= 5"
}
}