-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.25 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@authorizerdev/authorizer-js",
"version": "2.0.3",
"packageManager": "pnpm@7.28.0",
"author": "Lakhan Samani",
"license": "MIT",
"funding": "https://github.com/sponsors/authorizerdev",
"repository": {
"type": "git",
"url": "git+https://github.com/authorizerdev/authorizer-js.git"
},
"bugs": {
"url": "https://github.com/authorizerdev/authorizer-js/issues"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"unpkg": "lib/authorizer.min.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "rollup -w --config rollup.test.config.js",
"ts-types": "tsc --emitDeclarationOnly --outDir lib",
"build": "tsup",
"test": "npm run build && jest --testTimeout=500000 --runInBand",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"release-beta": "pnpm build && bumpp --commit --push --tag && pnpm publish --tag beta",
"lint": "eslint --ignore-pattern 'tsup.config.ts' --ext .ts,.tsx,.js,.jsx,.json .",
"lint:fix": "eslint --ignore-pattern 'tsup.config.ts' --ext .ts,.tsx,.js,.jsx,.json . --fix"
},
"browser": {
"path": "path-browserify"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
]
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@swc/core": "^1.3.99",
"@types/jest": "^29.5.12",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"rollup": "^2.79.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-serve": "^2.0.2",
"testcontainers": "^10.3.2",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.4.5"
}
}