-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "vue-konami",
"description": "The indispensable directive for VueJS",
"version": "2.0.0",
"keywords": [
"vue",
"vuejs",
"konami",
"vue-konami"
],
"author": "Jérémie Pichon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cadgerfeast/vue-konami.git"
},
"bugs": {
"url": "https://github.com/cadgerfeast/vue-konami/issues",
"email": "[email protected]"
},
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"unpkg": "./dist/index.umd.cjs",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "run-p dev:*",
"dev:madoc": "vite build --watch",
"dev:types": "vue-tsc -p tsconfig.dts.json --watch",
"dev:docs": "madoc dev",
"build": "run-s build:*",
"build:dist": "vite build",
"build:madoc": "vite build",
"build:types": "vue-tsc -p tsconfig.dts.json",
"build:docs": "madoc build",
"preview": "madoc preview",
"test": "vitest",
"lint": "eslint ./addons ./src ./test"
},
"devDependencies": {
"@madoc/core": "^0.1.8",
"@madoc/component-repl": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.25.8",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.2.3",
"eslint": "^8.28.0",
"eslint-plugin-vue": "^9.7.0",
"jsdom": "^20.0.2",
"npm-run-all": "^4.1.5",
"typescript": "^4.6.4",
"vite": "^4.0.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.25.8",
"vue": "^3.3.2",
"vue-tsc": "^1.0.9"
}
}