-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"name": "@autharmor/autharmor-react",
"version": "4.0.0-rc.4",
"type": "module",
"source": "src/index.ts",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"license": "MIT",
"homepage": "https://github.com/AuthArmor/autharmor-react#readme",
"repository": {
"type": "git",
"url": "https://github.com/AuthArmor/autharmor-react.git"
},
"files": [
"./dist"
],
"scripts": {
"build": "rollup --config",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,tsx,jsx}\"",
"update-deps": "pnpm up -Li",
"typecheck": "tsc --noEmit"
},
"browserslist": [
"last 2 Chrome versions"
],
"devDependencies": {
"@autharmor/autharmor-js": "link:..\\autharmor-js",
"@autharmor/autharmor-js-ui": "link:..\\autharmor-js-ui",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.2",
"@types/react": "^18.2.25",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"require-json5": "^1.3.0",
"rollup": "^4.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@autharmor/autharmor-js": "4.0.0-rc.4",
"@autharmor/autharmor-js-ui": "4.0.0-rc.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}