@coldsmirk/inkstone-core 0.8.2-canary.0 → 0.8.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.
- package/package.json +8 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coldsmirk/inkstone-core",
|
|
3
|
-
"version": "0.8.2
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "Shared Shiki highlighter service for the inkstone editor toolkit: one fine-grained singleton (catppuccin themes, JS regex engine) reused by Monaco, static rendering, and markdown surfaces.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shiki",
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
-
"source": "./src/index.ts",
|
|
28
27
|
"import": {
|
|
29
28
|
"types": "./dist/index.d.ts",
|
|
30
29
|
"default": "./dist/index.js"
|
|
@@ -42,11 +41,6 @@
|
|
|
42
41
|
"files": [
|
|
43
42
|
"dist"
|
|
44
43
|
],
|
|
45
|
-
"scripts": {
|
|
46
|
-
"build": "tsdown",
|
|
47
|
-
"clean": "rimraf dist",
|
|
48
|
-
"typecheck": "tsc --noEmit"
|
|
49
|
-
},
|
|
50
44
|
"dependencies": {
|
|
51
45
|
"@shikijs/langs": "^4.3.1",
|
|
52
46
|
"@shikijs/themes": "^4.3.1",
|
|
@@ -56,19 +50,11 @@
|
|
|
56
50
|
"node": ">=22"
|
|
57
51
|
},
|
|
58
52
|
"publishConfig": {
|
|
59
|
-
"access": "public"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
},
|
|
66
|
-
"require": {
|
|
67
|
-
"types": "./dist/index.d.cts",
|
|
68
|
-
"default": "./dist/index.cjs"
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
"./package.json": "./package.json"
|
|
72
|
-
}
|
|
53
|
+
"access": "public"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "tsdown",
|
|
57
|
+
"clean": "rimraf dist",
|
|
58
|
+
"typecheck": "tsc --noEmit"
|
|
73
59
|
}
|
|
74
|
-
}
|
|
60
|
+
}
|