Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/apps/auth/package.json

23 lines
447 B
JSON
Raw Normal View History

2023-01-24 10:32:40 +01:00
{
"name": "umbraco-backoffice-auth",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Umbraco HQ",
"email": "backoffice@umbraco.com"
},
2023-01-24 12:08:38 +01:00
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"files": [
"dist"
],
2023-01-24 10:32:40 +01:00
"scripts": {
"dev": "vite",
2023-01-24 12:08:38 +01:00
"build": "tsc && vite build",
2023-05-24 09:58:06 +02:00
"build:watch": "vite build --watch",
2023-01-24 12:08:38 +01:00
"build:production": "tsc && vite build --mode production",
2023-01-24 13:54:48 +01:00
"preview": "vite preview"
2023-01-24 10:32:40 +01:00
}
}