-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mypa-address-widget",
"license": "MIT",
"author": "Freek van Rijt <freek.vanrijt@myparcel.nl>",
"repository": "github:myparcelnl/address-widget",
"type": "module",
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
},
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.umd.cjs"
}
}
},
"engines": {
"node": "^22.0.0",
"pnpm": "^10.7.0"
},
"packageManager": "pnpm@10.7.0",
"engineStrict": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "GENERATE_PREVIEW_HTML=true vite build && vite preview",
"lint": "eslint .",
"lint:fix": "eslint --cache --fix .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:update": "vitest run -u",
"translations:import": "mypa-google-docs-importer -vv -d 1EhFss5PvXCf_hbTlubWPRFB8xFjEzh6ozHpl4dWAZAg -s 0 -o src/locales",
"typecheck": "vue-tsc --project tsconfig.base.json --noEmit",
"api-sdk:generate": "openapi-ts",
"prepare": "husky"
},
"dependencies": {
"@hey-api/client-fetch": "^0.13.1",
"@myparcel-dev/constants": "^2.9.0",
"@myparcel-dev/sdk": "^4.1.1",
"@myparcel-dev/ts-utils": "^1.15.0",
"@tailwindcss/vite": "^4.1.18",
"@vueuse/core": "^14.2.0",
"lodash-es": "^4.17.23",
"vue": "^3.5.27",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@hey-api/openapi-ts": "^0.92.4",
"@myparcel-dev/prettier-config": "^2.0.0",
"@myparcel-dev/semantic-release-config": "^6.0.10",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@tsconfig/node20": "^20.1.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.8",
"@types/semver": "^7.7.1",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.24",
"ci-info": "^4.4.0",
"cssnano": "^7.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^9.33.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.2",
"msw": "^2.12.8",
"mypa-google-docs-importer": "^1.0.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"rollup": "^4.57.1",
"semantic-release": "^24.2.9",
"semver": "^7.7.3",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-vue-devtools": "^8.0.6",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.12"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw",
"vue-demi"
]
},
"version": "1.9.0"
}