1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "@excalidraw/utils",
- "version": "0.1.0",
- "main": "dist/excalidraw-utils.min.js",
- "files": [
- "dist/*"
- ],
- "description": "Excalidraw utilities functions",
- "publishConfig": {
- "access": "public"
- },
- "license": "MIT",
- "keywords": [
- "excalidraw",
- "excalidraw-utils"
- ],
- "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"
- ]
- },
- "devDependencies": {
- "@babel/core": "7.14.3",
- "@babel/plugin-transform-arrow-functions": "7.13.0",
- "@babel/plugin-transform-async-to-generator": "7.14.5",
- "@babel/plugin-transform-runtime": "^7.12.10",
- "@babel/plugin-transform-typescript": "7.14.3",
- "@babel/preset-env": "7.14.5",
- "@babel/preset-typescript": "7.13.0",
- "babel-loader": "8.2.2",
- "babel-plugin-transform-class-properties": "6.24.1",
- "cross-env": "7.0.3",
- "css-loader": "5.2.6",
- "file-loader": "6.2.0",
- "sass-loader": "11.1.1",
- "ts-loader": "8.1.0",
- "webpack": "5.38.1",
- "webpack-bundle-analyzer": "4.4.2",
- "webpack-cli": "4.7.0"
- },
- "bugs": "https://github.com/excalidraw/excalidraw/issues",
- "repository": "https://github.com/excalidraw/excalidraw",
- "scripts": {
- "build:umd": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js",
- "build:umd:withAnalyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --config webpack.prod.config.js",
- "pack": "yarn build:umd && yarn pack"
- }
- }
|