-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.4 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.4 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
{
"name": "@ver0/react-hooks-testing",
"version": "1.0.0",
"description": "Test your react hooks with ease!",
"keywords": [
"react",
"hooks",
"testing",
"unit",
"ssr"
],
"repository": {
"type": "git",
"url": "https://github.com/ver0-project/react-hooks-testing"
},
"bugs": {
"url": "https://github.com/ver0-project/react-hooks-testing/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "Anton Zinovyev <xog3@yandex.ru>",
"engines": {
"node": ">=18"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn build:clean && yarn tsc -p tsconfig.build.json",
"build:clean": "rimraf dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage"
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.2",
"@ver0/eslint-config": "^1.3.6",
"@ver0/eslint-formatter-gha": "^1.0.1",
"@vitest/coverage-v8": "^4.0.10",
"eslint": "^9.39.1",
"jsdom": "^27.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rimraf": "^6.1.0",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
}
}