-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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": "plain-shiki",
"version": "0.0.12",
"description": "Highlight your plaintext via Shiki",
"keywords": [
"shiki",
"highlight",
"plaintext"
],
"author": "KazariEX",
"repository": "KazariEX/plain-shiki",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"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"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@types/node": "^22.7.4",
"@zinkawaii/eslint-config": "^0.1.7",
"@zinkawaii/stylelint-config": "^0.1.5",
"bumpp": "^9.6.1",
"eslint": "^9.12.0",
"shiki": "^1.22.0",
"stylelint": "^16.9.0",
"tsup": "^8.3.0",
"vitest": "^2.1.2"
},
"peerDependencies": {
"shiki": "^1.22.0"
}
}