@arcote.tech/arc 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +11 -4
package/package.json CHANGED
@@ -1,13 +1,20 @@
1
1
  {
2
2
  "name": "@arcote.tech/arc",
3
- "module": "index.ts",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
6
3
  "type": "module",
7
- "version": "0.1.0",
4
+ "version": "0.1.2",
8
5
  "private": false,
9
6
  "author": "Przemysław Krasiński [arcote.tech]",
10
7
  "description": "Arc is a framework designed to align code closely with business logic, streamlining development and enhancing productivity.",
8
+ "main": "./dist/index.js",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "default": "./dist/index.js"
16
+ }
17
+ },
11
18
  "scripts": {
12
19
  "build": "bun build --target=node ./index.ts --outfile=dist/index.js --external rxjs --external mutative && bun run build:declaration",
13
20
  "build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json --declarationMap",