-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 936 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "sugar-high",
"version": "0.9.2",
"type": "module",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./presets": {
"types": "./lib/presets/index.d.ts",
"default": "./lib/presets/index.js"
}
},
"description": "Super lightweight JSX syntax highlighter",
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"test": "vitest",
"dev": "next dev docs",
"build": "next build docs"
},
"devDependencies": {
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"codice": "^1.1.0",
"dom-to-image": "^2.6.0",
"next": "15.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sugar-high": "link:./",
"typescript": "5.7.3",
"vitest": "^3.0.2"
},
"resolutions": {
"sugar-high": "link:./"
},
"packageManager": "[email protected]"
}