forked from authorizerdev/authorizer-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
{
"name": "@authorizerdev/authorizer-js",
"version": "1.2.11",
"packageManager": "[email protected]",
"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=20000 --runInBand",
"prepublishOnly": "npm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"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"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.3",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@swc/core": "^1.3.37",
"@types/node": "^20.4.4",
"bumpp": "^9.0.0",
"eslint": "^8.35.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"rimraf": "^2.7.1",
"rollup": "^2.56.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"tsup": "^6.6.3",
"typescript": "^4.3.5"
}
}