-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.12 KB
/
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
44
45
46
47
48
49
50
51
{
"name": "shiki-class-transformer",
"version": "0.3.0",
"description": "convert shiki inline styles to classes",
"main": "dist/index.js",
"type": "module",
"types": "./dist/index.d.mts",
"scripts": {
"generate": "esno ./scripts/generate.ts",
"build": "pnpm generate && tsup",
"test": "vitest --no-isolate --pool=threads"
},
"files": [
"dist",
"src/themes"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.js"
},
"./themes/*": "./src/themes/*"
},
"keywords": [
"shiki",
"highlight",
"transformer"
],
"author": "Plumbiu",
"license": "MIT",
"devDependencies": {
"@plumbiu/eslint-config": "^0.3.8",
"@shikijs/types": "^1.26.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"colord": "^2.9.3",
"eslint": "^9.17.0",
"esno": "^4.8.0",
"jsdom": "^25.0.1",
"rgb-hex": "^4.1.0",
"shiki": "^1.26.1",
"tm-themes": "^1.9.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"dependencies": {
"style-to-object": "^1.0.8"
}
}