-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.44 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
62
63
{
"name": "factoria",
"version": "5.0.0",
"description": "Simplistic model factory for Node/JavaScript",
"license": "MIT",
"type": "module",
"repository": "phanan/factoria",
"author": {
"name": "Phan An",
"email": "me@phanan.net",
"url": "https://phanan.net"
},
"scripts": {
"lint": "eslint .",
"type-check": "tsc --noEmit",
"type-check:watch": "pnpm type-check -- --watch",
"test": "vitest run",
"test:watch": "vitest",
"build": "vite build && pnpm build:types",
"build:types": "dts-bundle-generator -o dist/factoria.d.ts src/index.ts --no-banner"
},
"main": "./dist/factoria.js",
"types": "./dist/factoria.d.ts",
"exports": {
".": {
"types": "./dist/factoria.d.ts",
"import": "./dist/factoria.js"
}
},
"keywords": [
"model",
"factory",
"seed",
"dummy",
"schema"
],
"packageManager": "pnpm@10.20.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"peerDependencies": {
"@faker-js/faker": ">=6.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@rollup/plugin-terser": "^0.4.4",
"dts-bundle-generator": "^9.5.1",
"object-deep-merge": "^2.0.0",
"eslint": "^9.39.4",
"neostandard": "^0.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"vite": "^6.4.2",
"vitest": "^2.1.2"
},
"lint-staged": {
"**/*.ts": "pnpm lint"
}
}