cd514d72d6
Introduces constant width freedraw mode, keeping the original variable mode as default. --------- Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
35 lines
882 B
JSON
35 lines
882 B
JSON
{
|
|
"name": "@excalidraw/laser-pointer",
|
|
"version": "1.3.1",
|
|
"description": "Generate outline for laser pointer tool",
|
|
"type": "module",
|
|
"types": "./dist/types/index.d.ts",
|
|
"main": "./dist/prod/index.js",
|
|
"module": "./dist/prod/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"development": "./dist/dev/index.js",
|
|
"production": "./dist/prod/index.js",
|
|
"default": "./dist/prod/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"keywords": [
|
|
"excalidraw",
|
|
"laserpointer"
|
|
],
|
|
"bugs": "https://github.com/excalidraw/excalidraw/issues",
|
|
"repository": "https://github.com/excalidraw/excalidraw",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"gen:types": "rimraf types && tsc",
|
|
"build:esm": "rimraf dist && node ../../scripts/buildBase.js && yarn gen:types"
|
|
}
|
|
}
|