-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "@stanlemon/react-couchdb-authentication",
"version": "0.10.29",
"description": "React component for authenticating against a CouchDB user db and syncing it locally with PouchDB.",
"keywords": [
"react",
"pouchdb",
"couchdb",
"authentication",
"app"
],
"type": "module",
"exports": [
"./src/index.ts"
],
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"test:watch": "jest -w",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rimraf ./dist/",
"build": "rimraf ./dist/; tsc; NODE_ENV=production babel --config-file ./.babelrc.json --extensions=\".ts,.tsx,.js.,.jsx\" ./src/ --out-dir ./dist/ --ignore \"src /**/*.test.*\" --source-maps",
"tsc": "tsc",
"example": "WEBDEV_ENTRY=./example/Example.tsx webpack serve"
},
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/stanlemon/javascript/tree/main/packages/react-couchdb-authentication"
},
"license": "MIT",
"engines": {
"node": ">=22.15.1"
},
"peerDependencies": {
"pouchdb": ">=8.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@stanlemon/webdev": "*",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/async-retry": "^1.4.9",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.1",
"@types/pouchdb": "^6.4.2",
"@types/react": "^19.1.0",
"isomorphic-fetch": "^3.0.0",
"pouchdb": "^9.0.0",
"pouchdb-adapter-memory": "^9.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"async-retry": "^1.3.3",
"buffer": "^6.0.3"
},
"overrides": {
"@types/pouchdb-core": "npm:@stanlemon/types-pouchdb-core@^0.0.3"
}
}