generated from productdevbookcom/ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.92 KB
/
package.json
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
{
"name": "urql-storage-capacitor",
"version": "1.0.3",
"description": "Graphcache offline storage for Capacitor",
"keywords": [
"urql",
"graphql client",
"graphql",
"exchanges",
"capacitor",
"offline",
"storage"
],
"homepage": "https://github.com/productdevbookcom/urql-storage-capacitor",
"bugs": "https://github.com/productdevbookcom/urql-storage-capacitor/issues",
"author": "productdevbook",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/urql-storage-capacitor.git"
},
"funding": "https://github.com/sponsors/productdevbook",
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup --dts",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx . --fix",
"test": "vitest",
"test:watch": "vitest --watch"
},
"license": "MIT",
"peerDependencies": {
"@capacitor/core": ">=4.0.0",
"@capacitor/network": ">=4.0.0",
"@capacitor/preferences": ">=4.0.0",
"@urql/exchange-graphcache": ">=5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.36.0",
"@capacitor/network": "^4.1.0",
"@capacitor/preferences": "^4.0.2",
"@urql/exchange-graphcache": "^5.0.9",
"@vitest/coverage-c8": "^0.29.2",
"bumpp": "^9.0.0",
"eslint": "^8.35.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"publishConfig": {
"access": "public"
}
}