-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.6 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@graphql-local/cron",
"version": "0.1.0",
"description": "Browser-based GraphQL cron job management library",
"scripts": {
"build": "tsc && rollup -c",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"format": "prettier --write 'src/**/*.ts'",
"codegen": "graphql-codegen",
"example:build": "pnpm --filter @/example dev",
"repomix": "repomix",
"prepare": "repomix && npm run build",
"prepublishOnly": "npm test && npm run lint",
"docs": "typedoc --out docs src"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./resolvers": {
"import": "./dist/resolvers.js",
"require": "./dist/resolvers.cjs.js"
},
"./schema": {
"import": "./dist/schema.graphql"
},
"./client": {
"import": "./dist/client.js",
"require": "./dist/client.cjs.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"graphql",
"cron",
"scheduler",
"browser",
"indexeddb",
"serviceworker",
"background-sync"
],
"author": {
"name": "GraphQL API Team"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-api/graphql-browser-cron.git"
},
"bugs": {
"url": "https://github.com/graphql-api/graphql-browser-cron/issues"
},
"homepage": "https://github.com/graphql-api/graphql-browser-cron#readme",
"dependencies": {
"cron-parser": "^4.9.0",
"cronstrue": "^2.47.0",
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.1",
"graphql-tag": "^2.12.6",
"idb": "^7.1.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/schema-ast": "^4.0.2",
"@graphql-codegen/typescript": "^4.0.4",
"@graphql-codegen/typescript-resolvers": "^4.0.4",
"@graphql-tools/schema": "^10.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/uuid": "^9.0.8",
"eslint": "^9",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"rollup-plugin-dts": "^6.1.0",
"typedoc": "^0.25.9",
"typescript": "^5.7.3",
"vitest": "^1.2.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
]
}