This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
{
"name": "vue-typed-emit",
"version": "1.1.1",
"private": false,
"description": "TypeScript utility type for Vue.js $emit",
"keywords": [
"emit",
"types",
"typescript",
"vue"
],
"homepage": "https://github.com/andrewvasilchuk/vue-typed-emit#readme",
"bugs": {
"url": "https://github.com/andrewvasilchuk/vue-typed-emit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewvasilchuk/vue-typed-emit.git"
},
"license": "MIT",
"author": "Andrew Vasilchuk <[email protected]>",
"contributors": [
{
"name": "Andrew Vasylchuk",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rimraf .dist/* && tsc ./src/index.ts --outDir ./dist --declaration",
"fmt": "npm run fmt:prettier && npm run fmt:package-json",
"fmt:package-json": "sort-package-json",
"fmt:prettier": "prettier --write ./**/*.{ts,md}",
"lint": "npm run lint:editorconfig && npm run lint:package-json && npm run lint:prettier && npm run lint:remark",
"lint:editorconfig": "editorconfig-checker",
"lint:package-json": "sort-package-json --check",
"lint:prettier": "prettier --check ./**/*.{ts,md}",
"lint:remark": "remark {.,.github}",
"prepare": "npm run build",
"test": "tsc -p ./tsconfig.test.json"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@types/node": "^18.11.18",
"@vue/composition-api": "<=1.1.5",
"editorconfig-checker": "^4.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"rimraf": "^3.0.2",
"sort-package-json": "^2.1.0",
"typescript": "^4.9.4",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"peerDependencies": {
"vue": "<=2.6.14"
}
}