-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.12 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
{
"name": "vue2-repl",
"version": "0.2.1",
"description": "Vue3 component for editing Vue2 components",
"main": "dist/vue2-repl.umd.js",
"module": "dist/vue2-repl.mjs",
"packageManager": "[email protected]",
"files": [
"dist"
],
"types": "dist/vue2-repl.d.ts",
"exports": {
".": {
"import": "./dist/vue2-repl.mjs",
"types": "./dist/vue2-repl.d.ts",
"require": "./dist/vue2-repl.umd.js"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build && pnpm build:types",
"build:types": "vue-tsc -p tsconfig.build.json && api-extractor run -c api-extractor.json && rimraf dist/src",
"docs:build": "vite build -c vite.config.docs.ts",
"docs:preview": "vite preview -c vite.config.docs.ts",
"commit": "pnpm changeset && cz",
"prepublish": "pnpm build && pnpm changeset version",
"publish": "pnpm changeset publish"
},
"repository": "https://github.com/Thy3634/vue2-repl.git",
"author": "Thy3634",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thy3634/vue2-repl/issues"
},
"homepage": "https://github.com/Thy3634/vue2-repl#readme",
"dependencies": {
"codemirror": "^5.62.3",
"fflate": "^0.7.3",
"hash-sum": "^2.0.0",
"rimraf": "^3.0.2",
"sucrase": "^3.20.1"
},
"devDependencies": {
"@babel/types": "^7.15.6",
"@changesets/cli": "^2.24.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@microsoft/api-extractor": "^7.19.2",
"@types/codemirror": "^5.60.2",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-vue": "^3.0.0-beta.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"typescript": "^4.5.4",
"vite": "^3.0.0-beta.3",
"vue": "^3.2.37",
"vue-tsc": "^0.34.15",
"vue2": "npm:vue@^2.7.10"
},
"peerDependencies": {
"vue": "^3.2.13",
"vue2": "npm:vue@^2.7.10"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}