-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.07 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
76
77
{
"name": "@piwikpro/vue-piwik-pro",
"private": false,
"version": "1.2.1",
"type": "module",
"author": "Piwik Pro Integration Team <[email protected]>",
"license": "MIT",
"description": "Piwik PRO tracking library for VueJS",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:docs": "typedoc && concat-md --decrease-title-levels --start-title-level-at=2 docs_raw > README.md && node scripts/postProcessDocs.js",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue,.ts src",
"format": "prettier --write .",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@happy-dom/jest-environment": "^15.11.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-vue": "^4.5.2",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"concat-md": "^0.5.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.4",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vue-tsc": "^2.1.10"
},
"keywords": [
"vue",
"piwik-pro",
"analytics",
"plugin"
],
"dependencies": {
"@piwikpro/tracking-base-library": "^1.2.2"
}
}