-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 KB
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
{
"name": "vue-typed-emit",
"version": "1.2.0",
"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 <andrew.d.vasilchuk@gmail.com>",
"contributors": [
{
"name": "Andrew Vasylchuk",
"email": "andrew.d.vasilchuk@gmail.com"
}
],
"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 .",
"prepare": "npm run build",
"test": "tsc -p ./tsconfig.test.json"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/node": "^22.13.1",
"@vue/composition-api": "^1.1.1",
"editorconfig-checker": "^6.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"rimraf": "^6.0.1",
"sort-package-json": "^2.14.0",
"typescript": "^5.7.3",
"vue": "^2.7.16"
},
"peerDependencies": {
"@vue/composition-api": "<=1.1.1",
"vue": "<3"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}