-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 KB
/
package.json
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": "@devoinc/holo",
"version": "2.0.1",
"description": "This is a tool for create dataset structures based on faker and chance",
"author": "Devo [email protected]",
"scripts": {
"test": "vitest",
"lint": "oxlint -c oxlintrc.json",
"stryker": "npx stryker run",
"build": "vite build",
"script": "node --max-old-space-size=8192 ./script.mjs",
"release": "release-it --dry-run",
"release:ci": "release-it --ci"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/DevoInc/holo.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"license": "MIT",
"peerDependencies": {
"@faker-js/faker": "9.2.0",
"chance": ">=1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.2",
"@stryker-mutator/core": "^8.6.0",
"@stryker-mutator/typescript-checker": "^8.6.0",
"@stryker-mutator/vitest-runner": "^8.6.0",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.14",
"@vitest/coverage-v8": "^2.1.4",
"oxlint": "^0.11.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rollup-plugin-visualizer": "^5.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
},
"engine": {
"node": ">=16",
"npm": ">=7"
}
}