-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.46 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.46 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
{
"name": "miragejs-orm",
"version": "1.0.0",
"description": "A modern, type-safe rework of MirageJS focusing on ORM capabilities with a fresh API and the same philosophy.",
"keywords": [
"miragejs",
"orm",
"typescript",
"frontend",
"testing",
"development",
"mocks",
"factories",
"fixtures",
"data-generation"
],
"license": "MIT",
"author": "Kyrylo Hrishchenko",
"homepage": "https://github.com/miragejs/orm",
"repository": {
"type": "git",
"url": "git+https://github.com/miragejs/orm.git"
},
"bugs": {
"url": "https://github.com/miragejs/orm/issues"
},
"type": "module",
"main": "./lib/dist/index.js",
"types": "./lib/dist/index.d.ts",
"exports": {
".": {
"types": "./lib/dist/index.d.ts",
"default": "./lib/dist/index.js"
}
},
"files": [
"lib/dist/"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"check:lint": "eslint lib/src --ext .ts",
"check:format": "prettier --check \"lib/src/**/*.ts\"",
"check:types": "tsc --noEmit",
"check:all": "pnpm check:lint && pnpm check:format && pnpm check:types",
"fix:lint": "pnpm check:lint --fix",
"fix:format": "prettier --write \"lib/src/**/*.ts\"",
"fix:all": "pnpm fix:lint && pnpm fix:format",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:types": "vitest run --typecheck",
"test:watch": "vitest",
"test:all": "pnpm test:types && pnpm test",
"build": "tsup lib/src/index.ts --dts --out-dir lib/dist",
"build:checks": "pnpm check:all && pnpm test:all && pnpm build",
"prepack": "pnpm build",
"release": "pnpm build && changeset publish"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}