From 32d654e64d679ab6b7b3b74cecffd73e894c55c3 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Mon, 9 Dec 2024 16:24:36 +0200 Subject: [PATCH] --- package.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index c2527f8..12c6325 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,26 @@ { - "authors": [ - "Tauri Programme within The Commons Conservancy" - ], - "dependencies": { - "@codeeditorland/api": "2.1.1" - }, - "devDependencies": {}, + "name": "@codeeditorland/plugin-process", "exports": { "import": "./dist-js/index.js", "require": "./dist-js/index.cjs", "types": "./dist-js/index.d.ts" }, + "main": "./dist-js/index.cjs", + "module": "./dist-js/index.js", + "types": "./dist-js/index.d.ts", "files": [ "dist-js", "README.md", "LICENSE" ], - "main": "./dist-js/index.cjs", - "module": "./dist-js/index.js", - "name": "@codeeditorland/plugin-process", "scripts": { "build": "rollup -c" }, - "types": "./dist-js/index.d.ts" + "dependencies": { + "@codeeditorland/api": "0.0.1" + }, + "devDependencies": {}, + "authors": [ + "Tauri Programme within The Commons Conservancy" + ] }