-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"name": "@autharmor/autharmor-node",
"version": "4.0.0-rc.5",
"type": "module",
"source": "src/index.ts",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.cjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"node": "./dist/cjs/index.cjs",
"require": "./dist/cjs/index.cjs"
}
},
"license": "MIT",
"homepage": "https://github.com/AuthArmor/autharmor-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/AuthArmor/autharmor-node.git"
},
"files": [
"./dist"
],
"scripts": {
"build": "rollup --config",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "pnpm up -Li",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^20.12.10",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"undici": "^6.16.0"
}
}