forked from vuejs/repl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "@leafphp/sandbox",
"version": "0.0.1",
"description": "Live code with output for Leaf",
"main": "dist/ssr-stub.js",
"module": "dist/vue-repl.js",
"files": [
"dist"
],
"types": "dist/repl.d.ts",
"exports": {
".": {
"import": "./dist/vue-repl.js",
"require": "./dist/ssr-stub.js",
"types": "./dist/repl.d.ts"
},
"./style.css": "./dist/style.css",
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-types": "vue-tsc -p tsconfig.build.json && api-extractor run -c api-extractor.json && rimraf dist/src",
"prepublishOnly": "npm run build && npm run build-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leafsphp/sandbox.git"
},
"author": "Michael Darko",
"license": "MIT",
"bugs": {
"url": "https://github.com/leafsphp/sandbox/issues"
},
"homepage": "https://github.com/leafsphp/sandbox#readme",
"devDependencies": {
"@babel/types": "^7.15.6",
"@microsoft/api-extractor": "^7.19.2",
"@types/codemirror": "^5.60.2",
"@types/node": "^16.11.12",
"@vitejs/plugin-vue": "^3.0.0-beta.0",
"codemirror": "^5.62.3",
"fflate": "^0.7.3",
"hash-sum": "^2.0.0",
"rimraf": "^3.0.2",
"sucrase": "^3.20.1",
"typescript": "^4.5.4",
"vite": "^3.0.0-beta.3",
"vue": "^3.2.37",
"vue-tsc": "^0.34.15"
},
"peerDependencies": {
"vue": "^3.2.13"
},
"dependencies": {
"axios": "^0.27.2"
}
}