-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "plain-shiki",
"type": "module",
"version": "0.0.12",
"packageManager": "[email protected]",
"description": "Highlight your plaintext via Shiki",
"author": "KazariEX",
"license": "MIT",
"repository": "KazariEX/plain-shiki",
"keywords": [
"shiki",
"highlight",
"plaintext"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node",
"build:playground": "pnpm -C playground run generate",
"dev": "tsup-node --watch",
"prepack": "pnpm run build",
"release": "bumpp --no-push -c \"release: v%s\"",
"test": "vitest",
"eslint": "eslint ."
},
"peerDependencies": {
"shiki": "^1.22.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@types/node": "^22.10.2",
"@zinkawaii/eslint-config": "^0.1.9",
"@zinkawaii/stylelint-config": "^0.2.2",
"bumpp": "^9.9.1",
"eslint": "^9.16.0",
"shiki": "^1.24.2",
"stylelint": "^16.11.0",
"tsup": "^8.3.5",
"vitest": "^2.1.8"
}
}