-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 KB
/
package.json
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
{
"name": "@sjmeverett/observable-map",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "Keep data consistent across your React app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p build.tsconfig.json",
"test": "vitest",
"lint": "eslint src/ --ext=ts,tsx",
"lint:fix": "eslint src/ --ext=ts --fix"
},
"author": "Stewart Everett (https://stewarteverett.com)",
"license": "ISC",
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"react": "16-18"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/lodash.isequal": "^4.5.6",
"@types/react": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjmeverett/observable-map.git"
},
"keywords": [
"observable",
"map",
"react"
],
"bugs": {
"url": "https://github.com/sjmeverett/observable-map/issues"
},
"homepage": "https://github.com/sjmeverett/observable-map#readme"
}