jsx-repl 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +105 -0
- package/dist/assets/editor.worker-DPra3Uc7.js +14976 -0
- package/dist/assets/vue.worker-Cp3kHWjt.js +35302 -0
- package/dist/chunks/utils-CzF1MxZ1.js +954 -0
- package/dist/codemirror-editor.css +591 -0
- package/dist/codemirror-editor.d.ts +22 -0
- package/dist/codemirror-editor.js +15544 -0
- package/dist/monaco-editor.css +6585 -0
- package/dist/monaco-editor.d.ts +22 -0
- package/dist/monaco-editor.js +191031 -0
- package/dist/ssr-stub.js +1 -0
- package/dist/vue-repl.css +393 -0
- package/dist/vue-repl.d.ts +327 -0
- package/dist/vue-repl.js +18142 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jsx-repl",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "JSX REPL",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/ssr-stub.js",
|
|
7
|
+
"module": "dist/vue-repl.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"types": "dist/vue-repl.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/vue-repl.d.ts",
|
|
15
|
+
"import": "./dist/vue-repl.js",
|
|
16
|
+
"require": "./dist/ssr-stub.js"
|
|
17
|
+
},
|
|
18
|
+
"./monaco-editor": {
|
|
19
|
+
"types": "./dist/monaco-editor.d.ts",
|
|
20
|
+
"import": "./dist/monaco-editor.js",
|
|
21
|
+
"require": null
|
|
22
|
+
},
|
|
23
|
+
"./codemirror-editor": {
|
|
24
|
+
"types": "./dist/codemirror-editor.d.ts",
|
|
25
|
+
"import": "./dist/codemirror-editor.js",
|
|
26
|
+
"require": null
|
|
27
|
+
},
|
|
28
|
+
"./package.json": "./package.json",
|
|
29
|
+
"./style.css": "./dist/vue-repl.css",
|
|
30
|
+
"./dist/style.css": "./dist/vue-repl.css"
|
|
31
|
+
},
|
|
32
|
+
"typesVersions": {
|
|
33
|
+
"*": {
|
|
34
|
+
"*": [
|
|
35
|
+
"./dist/*",
|
|
36
|
+
"./*"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"tag": "latest"
|
|
42
|
+
},
|
|
43
|
+
"simple-git-hooks": {
|
|
44
|
+
"pre-commit": "pnpm exec lint-staged --concurrent false"
|
|
45
|
+
},
|
|
46
|
+
"lint-staged": {
|
|
47
|
+
"*": [
|
|
48
|
+
"prettier --write --cache --ignore-unknown"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/vuejs/repl.git"
|
|
54
|
+
},
|
|
55
|
+
"author": "Evan You",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/vuejs/repl/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/vuejs/repl#readme",
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@babel/types": "^7.26.3",
|
|
63
|
+
"@eslint/js": "^9.17.0",
|
|
64
|
+
"@rollup/plugin-replace": "^6.0.2",
|
|
65
|
+
"@shikijs/monaco": "^1.25.1",
|
|
66
|
+
"@ts-macro/language-plugin": "^0.1.13",
|
|
67
|
+
"@types/codemirror": "^5.60.15",
|
|
68
|
+
"@types/node": "^22.10.3",
|
|
69
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
70
|
+
"@volar/jsdelivr": "~2.4.11",
|
|
71
|
+
"@volar/monaco": "~2.4.11",
|
|
72
|
+
"assert": "^2.1.0",
|
|
73
|
+
"bumpp": "^9.9.2",
|
|
74
|
+
"codemirror": "^5.65.18",
|
|
75
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
76
|
+
"eslint": "^9.17.0",
|
|
77
|
+
"eslint-plugin-vue": "^9.32.0",
|
|
78
|
+
"fflate": "^0.8.2",
|
|
79
|
+
"globby": "^14.0.2",
|
|
80
|
+
"lint-staged": "^15.3.0",
|
|
81
|
+
"monaco-editor-core": "^0.52.2",
|
|
82
|
+
"prettier": "^3.4.2",
|
|
83
|
+
"shiki": "^1.25.1",
|
|
84
|
+
"simple-git-hooks": "^2.11.1",
|
|
85
|
+
"sucrase": "^3.35.0",
|
|
86
|
+
"typescript": "^5.7.2",
|
|
87
|
+
"typescript-eslint": "^8.19.0",
|
|
88
|
+
"unocss": "^65.4.3",
|
|
89
|
+
"vite": "^6.0.6",
|
|
90
|
+
"vite-plugin-dts": "^4.4.0",
|
|
91
|
+
"volar-service-typescript": "^0.0.62",
|
|
92
|
+
"vscode-uri": "^3.0.8",
|
|
93
|
+
"vue": "https://pkg.pr.new/vuejs/vue-vapor/vue@9f73dbf",
|
|
94
|
+
"vue-tsc": "~2.2.0"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"dev": "vite",
|
|
98
|
+
"build": "vite build",
|
|
99
|
+
"build-preview": "vite build -c vite.preview.config.ts",
|
|
100
|
+
"format": "prettier --write .",
|
|
101
|
+
"preview": "vite preview",
|
|
102
|
+
"lint": "eslint .",
|
|
103
|
+
"typecheck": "vue-tsc --noEmit",
|
|
104
|
+
"release": "bumpp --all",
|
|
105
|
+
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
106
|
+
"deploy": "pnpm run build-preview && rsync -v -a --delete ./dist/ root@zmjs.dev:/usr/share/nginx/html/repl"
|
|
107
|
+
}
|
|
108
|
+
}
|