-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "typical-data",
"version": "1.0.0",
"description": "Test data factory",
"homepage": "https://github.com/davidtkramer/typical-data",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist/*",
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest run",
"typecheck": "vitest run --typecheck.only",
"prepack": "pnpm clean && pnpm build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{js,ts}'",
"prepare": "husky install"
},
"keywords": [],
"author": "David Kramer",
"license": "MIT",
"devDependencies": {
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
},
"packageManager": "pnpm@10.32.1"
}