@nestjs-dash/in-memory 0.0.1
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/README.md +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @nestjs-dash/prisma
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,OAAO,GAAG,aAAa,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;AAC/C,MAAM,GAAG,GAAG,OAAO,CAAC,iBAAiB,CAAqB,CAAC;AAE3D,OAAO,CAAC,GAAG,CAAC,cAAc,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nestjs-dash/in-memory",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Zero-setup in-memory adapter for nestjs-dash \u2014 the reference ResourceAdapter implementation the conformance suite checks every other adapter against",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/nestjs-dash/in-memory.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/nestjs-dash/in-memory/issues"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/nestjs-dash/in-memory#readme",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"type": "module",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public",
|
|
26
|
+
"registry": "https://registry.npmjs.org/",
|
|
27
|
+
"tag": "latest"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "tsc -p tsconfig.json",
|
|
31
|
+
"check-types": "tsc -p tsconfig.json --noEmit",
|
|
32
|
+
"format": "oxfmt",
|
|
33
|
+
"lint": "oxlint src",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"test:coverage": "vitest run --coverage",
|
|
36
|
+
"release": "release-it",
|
|
37
|
+
"dev": "tsc -p tsconfig.json --watch"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/node": "^26.5.1",
|
|
41
|
+
"@vitest/coverage-v8": "5.0.0",
|
|
42
|
+
"oxfmt": "^0.67.0",
|
|
43
|
+
"oxlint": "^1.82.0",
|
|
44
|
+
"typescript": "7.0.2",
|
|
45
|
+
"vitest": "^5.0.0",
|
|
46
|
+
"release-it": "^21.0.2",
|
|
47
|
+
"@release-it/conventional-changelog": "^12.0.0"
|
|
48
|
+
}
|
|
49
|
+
}
|