-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 3.43 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@sahinur/forgedata",
"version": "0.2.0",
"description": "A modern, modular, tree-shakable, zero-dependency fake data generator for TypeScript and JavaScript. A production-ready alternative to Faker.js with React integration and a CLI.",
"keywords": [
"faker",
"fake-data",
"mock",
"mock-data",
"test-data",
"seed",
"typescript",
"generator",
"react",
"cli",
"zod",
"schema"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"forgedata": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
},
"./zod": {
"types": "./dist/zod/index.d.ts",
"import": "./dist/zod/index.js",
"require": "./dist/zod/index.cjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"react": [
"dist/react/index.d.ts"
],
"zod": [
"dist/zod/index.d.ts"
]
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.0.0",
"scripts": {
"build": "tsup && node scripts/chmod-cli.mjs",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"bench": "tsx scripts/benchmark.ts",
"size": "npm run build && node scripts/size-report.mjs",
"cli": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"preflight": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"release:dry-run": "semantic-release --dry-run --no-ci",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": ">=17.0.0",
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^16.0.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^24.1.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semantic-release": "^24.1.0",
"tsup": "^8.2.4",
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vitest": "^1.6.0",
"zod": "^4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devSahinur/ForgeData.git"
},
"homepage": "https://devsahinur.github.io/ForgeData/",
"bugs": {
"url": "https://github.com/devSahinur/ForgeData/issues"
},
"author": "ForgeData Contributors",
"publishConfig": {
"access": "public"
}
}