-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "@plusauth/plusauth-rest-js",
"version": "2.2.0",
"description": "PlusAuth JavaScript Rest Client",
"type": "module",
"browser": "./dist/plusauth-rest-js.global.js",
"main": "./dist/plusauth-rest-js.cjs",
"module": "./dist/plusauth-rest-js.js",
"types": "./dist/plusauth-rest-js.d.ts",
"typings": "./dist/plusauth-rest-js.d.ts",
"exports": {
"import": "./dist/plusauth-rest-js.js",
"require": "./dist/plusauth-rest-js.cjs"
},
"packageManager": "[email protected]",
"files": [
"dist"
],
"author": {
"name": "Ismail H. Ayaz",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "pnpm --filter . run --parallel \"/build:/\"",
"build:browser": "tsup --entry.plusauth-rest-js src/index.ts --format iife --minify",
"build:esm": "tsup --entry.plusauth-rest-js src/index.ts --format esm",
"build:cjs": "tsup --entry.plusauth-rest-js src/index.ts --format cjs",
"build:dts": "rimraf types && tsc --emitDeclarationOnly && api-extractor run",
"lint": "biome check --fix --diagnostic-level=error",
"release": "cross-env GITHUB_TOKEN=$GITHUB_TOKEN release-it"
},
"dependencies": {
"@fastify/deepmerge": "^2.0.2",
"cross-fetch": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@microsoft/api-extractor": "^7.49.2",
"@release-it/conventional-changelog": "^10.0.0",
"@swc/core": "^1.10.14",
"conventional-changelog-conventionalcommits": "^8.0.0",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}