-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.82 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@tresjs/repl",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@8.6.10",
"description": "Vue component for editing TresJS based Vue components",
"author": "Yaël Guilloux (https://github.com/Tahul) ",
"license": "MIT",
"homepage": "https://github.com/tresjs/repl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tresjs/repl.git"
},
"bugs": {
"url": "https://github.com/tresjs/repl/issues"
},
"exports": {
".": {
"types": "./dist/repl.d.ts",
"require": "./dist/ssr-stub.js",
"import": "./dist/vue-repl.js"
},
"./monaco-editor": {
"types": "./dist/editor-types.d.ts",
"require": null,
"import": "./dist/monaco-editor.js"
},
"./codemirror-editor": {
"types": "./dist/editor-types.d.ts",
"require": null,
"import": "./dist/codemirror-editor.js"
},
"./style.css": "./dist/style.css",
"./dist/style.css": "./dist/style.css"
},
"main": "dist/ssr-stub.js",
"module": "dist/vue-repl.js",
"types": "dist/repl.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build-types": "vue-tsc -p tsconfig.build.json && api-extractor run -c api-extractor.json && node scripts/cleanup.js",
"build-preview": "vite build -c vite.preview.config.ts",
"prepublishOnly": "npm run build && npm run build-types"
},
"dependencies": {
"@unocss/reset": "^0.60.3",
"@vueuse/core": "^10.10.0",
"unocss": "^0.60.3"
},
"devDependencies": {
"@babel/types": "^7.24.9",
"@iconify-json/carbon": "^1.1.36",
"@iconify-json/mdi": "^1.1.67",
"@microsoft/api-extractor": "^7.47.3",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-replace": "^5.0.7",
"@tresjs/cientos": "4.0.0-next.1",
"@tresjs/core": "^4.2.2",
"@tresjs/eslint-config-vue": "^0.2.1",
"@types/codemirror": "^5.60.15",
"@types/node": "^20.14.12",
"@types/three": "^0.167.0",
"@unocss/preset-web-fonts": "^0.61.5",
"@vitejs/plugin-vue": "^5.1.0",
"@volar/cdn": "~1.11.1",
"@volar/monaco": "~2.3.4",
"@volar/typescript": "~2.3.4",
"@vue/language-service": "2.0.29",
"bumpp": "^9.4.1",
"codemirror": "^6.0.1",
"fflate": "^0.8.2",
"hash-sum": "^2.0.0",
"kolorist": "^1.8.0",
"lint-staged": "^15.2.7",
"monaco-editor-core": "^0.50.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"monaco-volar": "^0.4.0",
"onigasm": "^2.2.5",
"path-browserify": "^1.0.1",
"pathe": "^1.1.2",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"simple-git-hooks": "^2.11.1",
"sucrase": "^3.35.0",
"three": "^0.167.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-banner": "^0.7.1",
"vue": "^3.4.34",
"vue-tsc": "2.0.29"
}
}