-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
75
76
77
78
79
80
81
82
{
"name": "@zhangmo8/repl-react",
"description": "Online React application",
"version": "0.0.5-beta.1",
"type": "module",
"main": "build/repl-react.js",
"module": "build/repl-react.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/repl-react.d.ts",
"import": "./build/repl-react.js"
},
"./codemirror-editor": {
"types": "./build/codemirror-editor.d.ts",
"import": "./build/codemirror-editor.js"
},
"./package.json": "./package.json",
"./style.css": "./build/index.css",
"./build/style.css": "./build/index.css"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite -c vite.preview.config.ts",
"build": "tsc -b && vite build",
"build-preview": "vite build -c vite.preview.config.ts",
"lint": "biome lint",
"format": "biome format --write ./src",
"preview": "vite preview -c vite.preview.config.ts",
"release": "nr format && bumpp -r"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.3",
"@codemirror/state": "^6.4.1",
"@iconify/react": "^5.1.0",
"@lezer/highlight": "^1.2.1",
"@swc/wasm-typescript-esm": "^1.10.1",
"@swc/wasm-web": "^1.10.1",
"@types/codemirror": "^5.60.15",
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"bumpp": "^9.9.1",
"codemirror": "^6.0.1",
"fflate": "^0.8.2",
"globals": "^15.11.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0"
},
"packageManager": "pnpm@9.15.0",
"files": [
"build"
],
"homepage": "https://github.com/zhangmo8/repl-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zhangmo8/repl-react.git"
},
"bugs": {
"url": "https://github.com/zhangmo8/repl-react/issues"
},
"license": "MIT",
"author": {
"name": "Zhangmo8<wegi866@gmail.com>",
"email": "wegi866@gmail.com",
"url": "https://github.com/zhangmo8"
}
}