-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.01 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.01 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@openinc/parse-hooks",
"version": "1.0.3",
"packageManager": "pnpm@10.28.1",
"description": "React Hooks for Parse Server",
"author": "open.INC GmbH <info@openinc.de> (https://openinc.de)",
"homepage": "https://github.com/open-inc/parse-hooks",
"license": "MIT",
"type": "module",
"source": "src/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"scripts": {
"start": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-inc/parse-hooks.git"
},
"keywords": [
"react",
"hooks",
"parse"
],
"release": {
"branches": [
"master"
],
"repositoryUrl": "https://github.com/open-inc/parse-hooks.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"semantic-release-export-data"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"pnpm-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): Release ${nextRelease.version} \n\n${nextRelease.notes}"
}
]
},
"dependencies": {
"semantic-release": "^25.0.2"
},
"peerDependencies": {
"parse": "^8.6.0",
"react": "^18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@opendash/tsconfig": "latest",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/react": "^18.3.27",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"prettier-plugin-organize-imports": "^4.3.0",
"semantic-release-export-data": "^1.2.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "prettier --check"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
],
"singleQuote": false,
"trailingComma": "es5",
"endOfLine": "lf",
"semi": true,
"tabWidth": 2,
"printWidth": 80,
"arrowParens": "always",
"overrides": [
{
"files": "exports.ts",
"options": {
"printWidth": 1000
}
},
{
"files": "**/translations/**.json",
"options": {
"printWidth": 1000
}
}
]
}
}