miragejs-orm 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +17 -0
- package/lib/dist/index.cjs +17 -0
- package/lib/dist/index.cjs.map +1 -0
- package/lib/dist/index.d.cts +3044 -0
- package/lib/dist/index.d.ts +3044 -0
- package/lib/dist/index.js +17 -0
- package/lib/dist/index.js.map +1 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "miragejs-orm",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A modern, type-safe rework of MirageJS focusing on ORM capabilities with a fresh API and the same philosophy.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"miragejs",
|
|
7
|
+
"orm",
|
|
8
|
+
"typescript",
|
|
9
|
+
"frontend",
|
|
10
|
+
"testing",
|
|
11
|
+
"development",
|
|
12
|
+
"mocks",
|
|
13
|
+
"factories",
|
|
14
|
+
"fixtures",
|
|
15
|
+
"data-generation"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "Kyrylo Hrishchenko",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/miragejs/orm.git"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/miragejs/orm",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/miragejs/orm/issues"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./lib/dist/index.d.ts",
|
|
31
|
+
"default": "./lib/dist/index.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"types": "./lib/dist/index.d.ts",
|
|
35
|
+
"files": [
|
|
36
|
+
"lib/dist/"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"check:lint": "eslint lib/src --ext .ts",
|
|
40
|
+
"check:format": "prettier --check \"lib/src/**/*.ts\"",
|
|
41
|
+
"check:types": "tsc --noEmit",
|
|
42
|
+
"check:all": "pnpm check:lint && pnpm check:format && pnpm check:types",
|
|
43
|
+
"fix:lint": "pnpm check:lint --fix",
|
|
44
|
+
"fix:format": "prettier --write \"lib/src/**/*.ts\"",
|
|
45
|
+
"fix:all": "pnpm fix:lint && pnpm fix:format",
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"test:types": "vitest run --typecheck",
|
|
48
|
+
"test:all": "pnpm test:types && pnpm test",
|
|
49
|
+
"test:watch": "vitest",
|
|
50
|
+
"build": "tsup lib/src/index.ts --dts --out-dir lib/dist",
|
|
51
|
+
"build:checks": "pnpm check:all && pnpm test:all && pnpm build",
|
|
52
|
+
"prepack": "pnpm build",
|
|
53
|
+
"release": "pnpm build && changeset publish"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public",
|
|
57
|
+
"provenance": false
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@changesets/changelog-github": "^0.5.1",
|
|
61
|
+
"@changesets/cli": "^2.29.7",
|
|
62
|
+
"@eslint/js": "^9.27.0",
|
|
63
|
+
"@eslint/json": "^0.12.0",
|
|
64
|
+
"@types/node": "^22.15.21",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
66
|
+
"@typescript-eslint/parser": "^8.32.1",
|
|
67
|
+
"eslint": "^9.27.0",
|
|
68
|
+
"eslint-config-prettier": "^10.1.5",
|
|
69
|
+
"eslint-plugin-import-x": "^4.6.3",
|
|
70
|
+
"eslint-plugin-jsdoc": "^50.6.17",
|
|
71
|
+
"eslint-plugin-prettier": "^5.4.0",
|
|
72
|
+
"eslint-plugin-unused-imports": "^4.3.0",
|
|
73
|
+
"globals": "^16.1.0",
|
|
74
|
+
"prettier": "^3.5.3",
|
|
75
|
+
"tsup": "^8.5.0",
|
|
76
|
+
"typescript": "^5.8.3",
|
|
77
|
+
"typescript-eslint": "^8.32.1",
|
|
78
|
+
"vitest": "^3.1.4"
|
|
79
|
+
},
|
|
80
|
+
"engines": {
|
|
81
|
+
"node": ">=18"
|
|
82
|
+
},
|
|
83
|
+
"sideEffects": false
|
|
84
|
+
}
|