mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "excalidraw-app",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"homepage": ".",
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all",
|
|
"not safari < 12",
|
|
"not kaios <= 2.5",
|
|
"not edge < 79",
|
|
"not chrome < 70",
|
|
"not and_uc < 13",
|
|
"not samsung < 10"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"vite-plugin-html": "3.2.2"
|
|
},
|
|
"prettier": "@excalidraw/prettier-config",
|
|
"scripts": {
|
|
"build-node": "node ./scripts/build-node.js",
|
|
"build:app:docker": "cross-env VITE_APP_DISABLE_SENTRY=true VITE_APP_DISABLE_TRACKING=true vite build",
|
|
"build:app": "cross-env VITE_APP_GIT_SHA=$VERCEL_GIT_COMMIT_SHA vite build",
|
|
"build:version": "node ../scripts/build-version.js",
|
|
"build": "yarn build:app && yarn build:version",
|
|
"start": "yarn && vite",
|
|
"start:production": "npm run build && npx http-server build -a localhost -p 5001 -o",
|
|
"build:preview": "yarn build && vite preview --port 5000"
|
|
}
|
|
}
|