|
1 | 1 | {
|
2 |
| - "name": "jira.js", |
| 2 | + "name": "@esm-js/jira.js", |
3 | 3 | "version": "5.1.0",
|
4 | 4 | "description": "A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.",
|
5 | 5 | "repository": "https://github.com/MrRefactoring/jira.js.git",
|
6 | 6 | "homepage": "https://mrrefactoring.github.io/jira.js",
|
7 | 7 | "author": "Vladislav Tupikin <vladislav.tupikin@icloud.com>",
|
8 | 8 | "license": "MIT",
|
9 |
| - "type": "module", |
10 | 9 | "keywords": [
|
11 | 10 | "jira",
|
12 | 11 | "javascript",
|
|
37 | 36 | "types": "./dist/index.d.ts",
|
38 | 37 | "exports": {
|
39 | 38 | ".": {
|
40 |
| - "types": "./dist/index.d.ts", |
41 |
| - "import": "./dist/index.esm.js", |
42 |
| - "require": "./dist/index.cjs.js" |
| 39 | + "import": { |
| 40 | + "types": "./dist/index.d.mts", |
| 41 | + "default": "./dist/index.mjs" |
| 42 | + }, |
| 43 | + "require": { |
| 44 | + "types": "./dist/index.d.ts", |
| 45 | + "default": "./dist/index.js" |
| 46 | + } |
43 | 47 | }
|
44 | 48 | },
|
45 | 49 | "scripts": {
|
46 |
| - "build": "pnpm run build:src && pnpm run build:tests", |
47 |
| - "build:src": "rollup -c rollup.config.ts --configPlugin typescript", |
48 |
| - "build:tests": "tsc --project tests/tsconfig.json", |
| 50 | + "build": "pnpm run tsup", |
49 | 51 | "prettier": "prettier --write src",
|
50 | 52 | "lint": "pnpm run lint:tests && pnpm run lint:src:agile && pnpm run lint:src:clients && pnpm run lint:src:services && pnpm run lint:src:version2 && pnpm run lint:src:version3 && pnpm run lint:src:files",
|
51 | 53 | "lint:tests": "pnpm run lint:base tests",
|
|
111 | 113 | "rollup": "^4.40.1",
|
112 | 114 | "sinon": "^20.0.0",
|
113 | 115 | "tslib": "^2.8.1",
|
| 116 | + "tsup": "^8.4.0", |
114 | 117 | "typedoc": "^0.28.3",
|
115 | 118 | "typescript": "^5.8.3",
|
116 | 119 | "typescript-eslint": "^8.31.1",
|
117 | 120 | "vitest": "^3.1.2"
|
118 |
| - } |
| 121 | + }, |
| 122 | + "packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39" |
119 | 123 | }
|
0 commit comments