-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
69
70
71
72
73
74
{
"name": "rspress-plugin-translate",
"version": "0.0.1",
"description": "A plugin for rspress to integrate translate",
"bugs": "https://github.com/byteHulk/rspress-plugin-translate/issues",
"repository": {
"type": "git",
"url": "https://github.com/byteHulk/rspress-plugin-translate"
},
"license": "MIT",
"jsnext:source": "./src/index.ts",
"types": "./dist/types/index.d.ts",
"main": "./dist/lib/index.js",
"module": "./dist/es/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/tsconfig": "2.41.0",
"@rspress/shared": "workspace:*",
"@types/node": "^18.11.17",
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"typescript": "^5",
"vitest": "0.33.0"
},
"peerDependencies": {
"rspress": "^1.0.2"
},
"sideEffects": [
"*.css",
"*.less",
"*.sass",
"*.scss"
],
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@modern-js/builder-shared": "^2.41.0",
"@modern-js/utils": "2.41.0",
"@types/cacache": "^17.0.2",
"cacache": "^18.0.1",
"crypto": "^1.0.1",
"openai": "^4.20.1",
"tiktoken": "^1.0.11"
}
}