-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "@bear-auth/react",
"version": "3.0.13",
"type": "module",
"sideEffects": false,
"module": "./build/index.js",
"types": "./build/index.d.ts",
"main": "./build-cjs/index.js",
"exports": {
".": {
"import": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"require": {
"types": "./build-cjs/index.d.ts",
"default": "./build-cjs/index.js"
}
}
},
"scripts": {
"clean": "rm -rf dist .cache",
"build:es": "tsc && tsc-alias",
"build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"build": "yarn build:es && yarn build:cjs",
"dev": "tsc -w & tsc-alias -w",
"cir-dep": "check-cir-deps ./src",
"lint": "eslint-lint --config eslint.config.mjs ./src/**/*.ts",
"prepare": "yarn build"
},
"devDependencies": {
"@bear-auth/core": "3.0.13",
"@tooling/eslint": "workspace:*",
"@tooling/madge": "workspace:*",
"@tooling/typescript": "workspace:*",
"react": "19.1.0",
"tsc-alias": "1.8.16",
"typescript": "5.8.3"
},
"peerDependencies": {
"@bear-auth/core": "3.0.13",
"react": "^18 || ^19"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"build-cjs"
],
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/bear-auth"
},
"homepage": "https://github.com/AckeeCZ/bear-auth",
"bugs": {
"url": "https://github.com/AckeeCZ/bear-auth/issues"
}
}