-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.76 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
58
59
60
61
62
63
{
"name": "@vardario/cognito-client",
"version": "0.0.0-development",
"description": "",
"license": "MIT",
"author": "Sahin Vardar",
"repository": {
"type": "git",
"url": "git@github.com:vardario/cognito-client.git"
},
"type": "module",
"main": "lib/index.js",
"browser": "lib/browser.js",
"files": [
"lib"
],
"scripts": {
"build": "pnpm build:lib && pnpm build:browser",
"build:browser": "esbuild src/index.ts --bundle --outfile=lib/browser.js --platform=neutral --external:zod",
"build:lib": "tsc --build",
"format": "prettier --plugin-search-dir . --write . && prettier-package-json --write && eslint --fix .",
"integration-test": "vitest run integration",
"prepare": "husky install",
"test": "vitest run unit",
"watch": "tsc --build --watch"
},
"devDependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.465.0",
"@types/jsdom": "^21.1.5",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.20.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-package-json": "^2.8.0",
"semantic-release": "^22.0.8",
"testcontainers": "^10.2.2",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"vitest-fetch-mock": "^0.2.2"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"package.json": "prettier-package-json --write"
},
"packageManager": "pnpm@8.10.5",
"release": {
"branches": [
"release"
]
}
}