-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "@plentymarkets/pwa-module-boilerplate",
"version": "1.0.0",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./runtime/*": {
"import": "./dist/runtime/*",
"require": "./dist/runtime/*"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"engines": {
"yarn": ">=3.6.1",
"node": ">=20.0.0"
},
"scripts": {
"build": "yarn dev:prepare && nuxt-module-build build",
"dev:prepare": "yarn nuxt-module-build build --stub && nuxi prepare",
"setup:unix": "chmod +x yarn.sh && ./yarn.sh && yarn build",
"setup:windows": "powershell -Command Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process; ./yarn.ps1 && yarn build",
"format": "prettier --check \"**/*.{ts,vue,css,scss,md}\"",
"format:fix": "prettier --write \"**/*.{ts,vue,css,scss,md}\""
},
"dependencies": {
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/module-builder": "0.8.4",
"@nuxtjs/i18n": "^9.1.0",
"@nuxtjs/tailwindcss": "^6.12.0",
"@storefront-ui/vue": "^2.6.4",
"nuxt": "^3.14.1592",
"prettier": "^3.3.2",
"typescript": "^5.7.2",
"vue": "^3.5.13"
}
}