-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "@plusauth/plusauth-rest-js",
"version": "2.4.0",
"description": "PlusAuth JavaScript Rest Client",
"type": "module",
"browser": "./dist/plusauth-rest-js.iife.js",
"main": "./dist/plusauth-rest-js.cjs",
"module": "./dist/plusauth-rest-js.mjs",
"types": "./dist/plusauth-rest-js.d.mts",
"typings": "./dist/plusauth-rest-js.d.mts",
"exports": {
".": {
"import": "./dist/plusauth-rest-js.mjs",
"require": "./dist/plusauth-rest-js.cjs",
"types": "./dist/plusauth-rest-js.d.mts"
}
},
"files": [
"dist"
],
"author": {
"name": "Ismail H. Ayaz",
"email": "ismail.ayaz@ekinokssoftware.com"
},
"license": "MIT",
"scripts": {
"build": "tsdown",
"lint": "biome check --fix --diagnostic-level=error",
"release": "cross-env GITHUB_TOKEN=$GITHUB_TOKEN release-it"
},
"dependencies": {
"@fastify/deepmerge": "^3.1.0",
"cross-fetch": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@release-it/conventional-changelog": "^10.0.4",
"@types/node": "^25.0.3",
"conventional-changelog-conventionalcommits": "^9.1.0",
"release-it": "^19.1.0",
"tsdown": "^0.18.2",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}