-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.7 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
{
"name": "prisma-graphql-type-decimal",
"version": "0.0.0-dev",
"license": "MIT",
"description": "GraphQL type for Prisma's Decimal scalar, wrapper around decimal.js",
"type": "module",
"module": "./dist/prisma-graphql-type-decimal.mjs",
"types": "./dist/prisma-graphql-type-decimal.d.ts",
"exports": {
".": {
"types": "./dist/prisma-graphql-type-decimal.d.ts",
"default": "./dist/prisma-graphql-type-decimal.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/prisma-graphql-type-decimal.git"
},
"bugs": {
"url": "https://github.com/unlight/prisma-graphql-type-decimal/issues"
},
"homepage": "https://github.com/unlight/prisma-graphql-type-decimal#readme",
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:m": "node node_modules/@stryker-mutator/core/bin/stryker.js run",
"test:r": "vitest run",
"test:cov": "vitest run --coverage",
"test:w": "vitest watch",
"lint": "npm run eslint && npm run tscheck",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"format:src": "prettier src --write",
"build": "bash Taskfile build"
},
"peerDependencies": {
"@prisma/client": "7",
"@prisma/client-runtime-utils": "7",
"graphql": "16 || 17"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@prisma/client": "^7.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stryker-mutator/api": "^9.6.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@swc/core": "^1.15.46",
"@swc/helpers": "^0.5.23",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"class-transformer": "^0.5.1",
"conventional-changelog-conventionalcommits": "^10.2.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.2.1",
"eslint-plugin-perfectionist": "^5.10.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^14.0.0",
"eslint-plugin-unicorn": "^72.0.0",
"eslint-plugin-wix-editor": "^3.3.0",
"globals": "^17.7.0",
"graphql": "^17.0.2",
"prettier": "^3.9.5",
"prisma": "^7.8.0",
"reflect-metadata": "^0.2.2",
"semantic-release": "^25.0.8",
"tsdown": "^0.22.12",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
},
"allowScripts": {
"@prisma/engines@7.8.0": true,
"@swc/core@1.15.46": true,
"prisma@7.8.0": true
}
}