-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "vue-parent-emit",
"version": "3.1.1",
"description": "Emit events from a parent Vue component to children",
"license": "MIT",
"homepage": "https://github.com/kkuegler/vue-parent-emit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kkuegler/vue-parent-emit.git"
},
"bugs": {
"url": "https://github.com/kkuegler/vue-parent-emit/issues"
},
"keywords": [
"Vue",
"event",
"emit",
"trigger",
"parent",
"child",
"component"
],
"author": "Konrad Kügler <[email protected]>",
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build-all": "npm run build && npm run build-esm",
"build": "tsc --build",
"build-esm": "tsc --module es2015 --declaration false --outDir lib/esm",
"watch": "tsc --build --watch",
"clean": "tsc --build --clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "3.4.2",
"typescript": "^5.7.3",
"vue": "^3.5.13"
},
"files": [
"lib/**/*"
]
}