-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
{
"name": "@pangeacyber/react-auth",
"description": "Pangea auth provider React component",
"version": "0.0.19",
"type": "commonjs",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"repository": "github:pangeacyber/pangea-javascript",
"author": "Pangea (https://pangea.cloud)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.13.0",
"scripts": {
"build": "yarn build-docs && parcel build && cp dist/index.d.ts dist/index.d.mts",
"build-docs": "typedoc --plugin typedoc-plugin-rename-defaults",
"lint-attw": "attw --pack",
"lint-publint": "publint --strict",
"prepack": "npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@pangeacyber/vanilla-js": "0.1.17",
"jose": "^6.2.2",
"lodash": "^4.17.23"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.2.0 || ^19.2.1",
"react-dom": "^17.0.2 || ^18.2.0 || ^19.2.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@babel/core": "^7.29.0",
"@futureportal/parcel-transformer-package-version": "^1.0.0",
"@parcel/config-default": "^2.16.4",
"@parcel/packager-ts": "^2.16.4",
"@parcel/plugin": "^2.16.4",
"@parcel/source-map": "^2.1.1",
"@parcel/transformer-typescript-types": "^2.16.4",
"@parcel/utils": "^2.16.4",
"@tsconfig/strictest": "^2.0.8",
"@types/lodash": "^4.17.24",
"@types/react": "19.2.14",
"parcel": "^2.16.4",
"publint": "0.3.12",
"react": "19.2.4",
"typedoc": "^0.28.18",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.9.3"
}
}