@octaviaflow/core 3.0.1 → 3.0.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@octaviaflow/core",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "OctaviaFlow Design System React components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -12,6 +12,11 @@
12
12
  "import": "./dist/index.js",
13
13
  "require": "./dist/index.cjs"
14
14
  },
15
+ "./monaco": {
16
+ "types": "./dist/monaco.d.ts",
17
+ "import": "./dist/monaco.js",
18
+ "require": "./dist/monaco.cjs"
19
+ },
15
20
  "./styles.css": "./dist/styles.css"
16
21
  },
17
22
  "sideEffects": [
@@ -22,12 +27,12 @@
22
27
  "dist"
23
28
  ],
24
29
  "scripts": {
25
- "build:scss": "sass src/styles/index.scss dist/styles.css --style=compressed --no-source-map",
30
+ "build:scss": "sass src/styles/index.scss dist/styles.css --style=compressed --no-source-map --no-charset",
26
31
  "build:js": "tsup",
27
32
  "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist --project tsconfig.build.json",
28
33
  "build": "npm run build:scss && npm run build:js && npm run build:types",
29
34
  "dev:js": "tsup --watch",
30
- "dev:scss": "sass --watch src/styles/index.scss dist/styles.css --style=compressed --no-source-map",
35
+ "dev:scss": "sass --watch src/styles/index.scss dist/styles.css --style=compressed --no-source-map --no-charset",
31
36
  "dev": "tsup --watch",
32
37
  "lint": "biome check --diagnostic-level=error src/",
33
38
  "test": "vitest run",
@@ -36,10 +41,10 @@
36
41
  "typecheck": "tsc --noEmit"
37
42
  },
38
43
  "dependencies": {
39
- "@octaviaflow/config": "3.0.1",
40
- "@octaviaflow/fonts": "3.0.1",
41
- "@octaviaflow/icons": "3.0.1",
42
- "@octaviaflow/tokens": "3.0.1",
44
+ "@octaviaflow/config": "3.0.3",
45
+ "@octaviaflow/fonts": "3.0.3",
46
+ "@octaviaflow/icons": "3.0.3",
47
+ "@octaviaflow/tokens": "3.0.3",
43
48
  "clsx": "^2.1.1",
44
49
  "framer-motion": "^12.38.0",
45
50
  "react-aria": "^3.48.0"