-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "rspress-plugin-shiki",
"version": "1.8.11",
"description": "A plugin for rspress to record the last updated time of the doc.",
"bugs": "https://github.com/web-infra-dev/rspress/issues",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rspress",
"directory": "packages/plugin-last-updated"
},
"license": "MIT",
"type": "module",
"jsnext:source": "./src/index.ts",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/node/index.js",
"scripts": {
"dev": "modern build -w",
"build": "modern build",
"reset": "rimraf ./**/node_modules",
"lint": "modern lint",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"change-status": "modern change-status",
"gen-release-note": "modern gen-release-note",
"release": "modern release",
"new": "modern new",
"test": "vitest run --passWithNoTests",
"upgrade": "modern upgrade"
},
"engines": {
"node": ">=14.17.6"
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"devDependencies": {
"@modern-js/module-tools": "^2.42.2",
"@modern-js/tsconfig": "^2.42.0",
"@types/hast": "3.0.3",
"@types/node": "^18.11.17",
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18.2.0",
"typescript": "^5",
"unified": "10.1.2",
"vitest": "0.33.0"
},
"sideEffects": [
"*.css",
"*.less",
"*.sass",
"*.scss"
],
"files": [
"dist",
"shiki.css"
],
"dependencies": {
"@rspress/shared": "^1.8.3",
"hast-util-from-html": "2.0.1",
"plugin-shiki-transformers": "^0.0.7",
"shiki": "0.14.5",
"unist-util-visit": "5.0.0"
}
}