-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.51 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.51 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
{
"name": "@merged/solid-urql",
"version": "1.1.0",
"description": "URQL graphql integartion for solid-js",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"commit": "cz",
"lint": "eslint --ext ts --max-warnings 0 --cache src",
"semantic-release": "semantic-release"
},
"private": false,
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/es/index.js"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"solid-js",
"urql",
"sse"
],
"author": "Torsten Blindert",
"homepage": "https://github.com/merged-js/solid-urql",
"repository": {
"type": "git",
"url": "git+https://github.com/merged-js/solid-urql.git"
},
"license": "MIT",
"peerDependencies": {
"@urql/core": "^2.4.0",
"solid-js": "^1.4.0"
},
"devDependencies": {
"@regrapes/eslint-config": "^1.8.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-typescript": "^8.3.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@urql/core": "^2.5.0",
"babel-preset-solid": "^1.4.4",
"cz-conventional-changelog": "^3.3.0",
"rollup": "^2.75.6",
"semantic-release": "^19.0.3",
"solid-js": "^1.4.4",
"typescript": "^4.7.3"
},
"prettier": "@regrapes/eslint-config/prettier",
"eslintConfig": {
"extends": [
"@regrapes/eslint-config/rules/base",
"@regrapes/eslint-config/rules/prettier"
],
"rules": {
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/consistent-type-assertions": "off"
}
},
"release": {
"branches": [
"main"
],
"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"
]
},
"publishConfig": {
"access": "public"
}
}