-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.17 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
{
"name": "@unchainedshop/cockpit-api",
"version": "2.4.2",
"description": "A package to interact with the Cockpit CMS API, including functionalities to handle GraphQL requests and various CMS content manipulations.",
"main": "dist/index.js",
"homepage": "https://unchained.shop",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema/index.d.ts",
"import": "./dist/schema/index.js"
},
"./fetch": {
"types": "./dist/fetch/index.d.ts",
"import": "./dist/fetch/index.js"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "node --experimental-transform-types --test --experimental-test-coverage --test-coverage-exclude='src/index.ts' --test-coverage-exclude='src/**/*.test.ts' --test-coverage-exclude='src/__tests__/*' src/*.test.ts src/**/*.test.ts",
"test:watch": "node --experimental-transform-types --test --watch src/*.test.ts src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unchainedshop/cockpit-api.git"
},
"bugs": {
"url": "https://github.com/unchainedshop/cockpit-api/issues"
},
"keywords": [
"unchainedshop",
"cockpit",
"api"
],
"author": "Mikael Araya",
"contributors": [
"Pascal Kaufmann"
],
"license": "MIT",
"engines": {
"node": ">=25"
},
"dependencies": {
"@unchainedshop/logger": "^4.6.2",
"lru-cache": "^11.2.6"
},
"types": "dist/index.d.ts",
"peerDependencies": {
"@graphql-tools/wrap": "^10.0.0 || ^11.0.0",
"graphql": "^15.0.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"graphql": {
"optional": true
},
"@graphql-tools/wrap": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.3.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"graphql": "^16.13.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}