|
3 | 3 | "description": "Easily publish web extensions to their stores", |
4 | 4 | "version": "3.0.3", |
5 | 5 | "packageManager": "[email protected]", |
6 | | - "license": "MIT", |
7 | | - "keywords": [ |
8 | | - "chrome-web-store", |
9 | | - "firefox-addon-store", |
10 | | - "chrome", |
11 | | - "firefox", |
12 | | - "addon", |
13 | | - "store", |
14 | | - "extension", |
15 | | - "browser" |
16 | | - ], |
17 | | - "author": { |
18 | | - "name": "Aaron Klinker", |
19 | | - "url": "https://github.com/aklinker1" |
20 | | - }, |
21 | | - "repository": { |
22 | | - "type": "git", |
23 | | - "url": "git+https://github.com/aklinker1/publish-browser-extension.git" |
24 | | - }, |
25 | | - "homepage": "https://github.com/aklinker1/publish-browser-extension#readme", |
26 | | - "files": [ |
27 | | - "dist" |
28 | | - ], |
29 | 6 | "type": "module", |
30 | | - "main": "dist/index.cjs", |
31 | | - "module": "dist/index.js", |
32 | | - "types": "dist/index.d.ts", |
33 | | - "bin": { |
34 | | - "publish-extension": "bin/publish-extension.cjs" |
35 | | - }, |
36 | | - "exports": { |
37 | | - ".": { |
38 | | - "require": { |
39 | | - "types": "./dist/index.d.cts", |
40 | | - "default": "./dist/index.cjs" |
41 | | - }, |
42 | | - "import": { |
43 | | - "types": "./dist/index.d.ts", |
44 | | - "default": "./dist/index.js" |
45 | | - } |
46 | | - }, |
47 | | - "./cli": { |
48 | | - "require": "./dist/cli.cjs", |
49 | | - "import": "./dist/cli.js" |
50 | | - } |
51 | | - }, |
52 | 7 | "scripts": { |
53 | 8 | "check": "check", |
54 | 9 | "build": "run-s build:*", |
55 | | - "build:clean": "rimraf dist", |
56 | | - "build:lib": "tsup src/index.ts --dts --format cjs,esm --sourcemap", |
57 | | - "build:cli": "tsup --format cjs,esm --entry.cli src/cli.ts", |
58 | | - "build:test-extension": "node scripts/build-test-extension.js", |
| 10 | + "build:lib": "tsdown src/index.ts src/cli.ts", |
| 11 | + "build:test-extension": "bun scripts/build-test-extension.js", |
59 | 12 | "dev:all": "./scripts/dev.sh all", |
60 | 13 | "dev:chrome": "./scripts/dev.sh chrome", |
61 | 14 | "dev:firefox": "./scripts/dev.sh firefox", |
|
87 | 40 | "oxlint": "^1.24.0", |
88 | 41 | "prettier": "^3.6.2", |
89 | 42 | "publint": "^0.2.12", |
90 | | - "rimraf": "^4.4.1", |
91 | 43 | "simple-git-hooks": "^2.13.1", |
| 44 | + "tsdown": "^0.15.9", |
92 | 45 | "tsup": "^8.5.0", |
93 | 46 | "typescript": "^5.9.3" |
94 | 47 | }, |
|
98 | 51 | "lint-staged": { |
99 | 52 | "*": "prettier --ignore-unknown --write" |
100 | 53 | }, |
101 | | - "changelog": { |
102 | | - "excludeAuthors": [ |
103 | | - |
104 | | - ] |
| 54 | + "license": "MIT", |
| 55 | + "keywords": [ |
| 56 | + "chrome-web-store", |
| 57 | + "firefox-addon-store", |
| 58 | + "chrome", |
| 59 | + "firefox", |
| 60 | + "addon", |
| 61 | + "store", |
| 62 | + "extension", |
| 63 | + "browser" |
| 64 | + ], |
| 65 | + "author": { |
| 66 | + "name": "Aaron Klinker", |
| 67 | + "url": "https://github.com/aklinker1" |
| 68 | + }, |
| 69 | + "repository": { |
| 70 | + "type": "git", |
| 71 | + "url": "git+https://github.com/aklinker1/publish-browser-extension.git" |
| 72 | + }, |
| 73 | + "homepage": "https://github.com/aklinker1/publish-browser-extension#readme", |
| 74 | + "files": [ |
| 75 | + "dist" |
| 76 | + ], |
| 77 | + "module": "dist/index.js", |
| 78 | + "types": "dist/index.d.ts", |
| 79 | + "bin": { |
| 80 | + "publish-extension": "bin/publish-extension.mjs" |
| 81 | + }, |
| 82 | + "exports": { |
| 83 | + ".": { |
| 84 | + "types": "./dist/index.d.ts", |
| 85 | + "import": "./dist/index.js" |
| 86 | + } |
105 | 87 | } |
106 | 88 | } |
0 commit comments