forked from merged-js/solid-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.69 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.69 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
102
{
"name": "@merged/solid-apollo",
"version": "1.6.0",
"description": "Apollo client for solid",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"private": false,
"homepage": "https://github.com/merged-js/solid-apollo",
"repository": {
"type": "git",
"url": "git+https://github.com/merged-js/solid-apollo.git"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint --ext ts,tsx --max-warnings 0 --cache src",
"commit": "cz",
"semantic-release": "semantic-release"
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/es/index.js"
}
},
"keywords": [
"apollo",
"graphql",
"solid"
],
"author": "Torsten Blindert",
"license": "MIT",
"peerDependencies": {
"@apollo/client": "^3.6.0",
"solid-js": "^1.4.0"
},
"devDependencies": {
"@apollo/client": "3.6.6",
"@grapes-agency/eslint-config": "^1.6.2",
"@graphql-typed-document-node/core": "^3.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"babel-preset-solid": "1.4.4",
"cz-conventional-changelog": "^3.3.0",
"graphql": "^15.6.1",
"rollup": "^2.58.0",
"rollup-plugin-delete": "^2.0.0",
"semantic-release": "^18.0.0",
"solid-js": "1.4.4",
"typescript": "^4.4.2"
},
"prettier": "@grapes-agency/eslint-config/prettier",
"eslintConfig": {
"extends": [
"@grapes-agency/eslint-config/rules/base",
"@grapes-agency/eslint-config/rules/prettier"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/consistent-type-imports": "warn",
"@typescript-eslint/no-shadow": "off"
}
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"message": "chore(release): 🚀 ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}