-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.18 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
{
"name": "react-safe-context",
"version": "1.1.1",
"description": "Create React context objects that have built-in safety against having undefined value",
"author": "Darren Lane",
"license": "MIT",
"private": false,
"sideEffects": false,
"keywords": [
"react",
"safe",
"context",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dslane/react-safe-context.git"
},
"homepage": "https://github.com/dslane/react-safe-context",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"lint:fix": "eslint './src/**/*.{ts,tsx}'",
"test": "jest --config .jestrc.js",
"test:watch": "yarn test --watch",
"build": "tsc --project tsconfig.build.json",
"build:clean": "tsc --build --clean && yarn build",
"build:docs": "yarn build:clean && typedoc",
"build:full": "yarn build:clean && typedoc",
"prepare": "yarn test && yarn build:clean"
},
"peerDependencies": {
"react": ">=16.10.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"babel-jest": "^29.7.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"esm": "^3.2.25",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"np": "^10.1.0",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.2",
"typescript": "^5.7.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}