UNPKG

@visactor/vrender-core

Version:
82 lines 2.17 kB
{ "name": "@visactor/vrender-core", "version": "0.22.6", "description": "", "sideEffects": [ "./src/modules.ts", "./cjs/modules.js", "./es/modules.js" ], "main": "cjs/index.js", "module": "es/index.js", "types": "es/index.d.ts", "files": [ "cjs", "es", "dist" ], "dependencies": { "color-convert": "2.0.1", "@visactor/vutils": "~0.19.4" }, "devDependencies": { "@rushstack/eslint-patch": "~1.1.4", "react": "^18.0.0", "react-dom": "^18.0.0", "@types/react": "^18.0.0", "@types/react-dom": "^18.0.0", "@vitejs/plugin-react": "3.1.0", "@types/jest": "^26.0.0", "jest": "^26.0.0", "jest-electron": "^0.1.12", "jest-extended": "^1.2.1", "ts-jest": "^26.0.0", "eslint": "~8.18.0", "vite": "3.2.6", "typescript": "4.9.5", "cross-env": "^7.0.3", "@internal/bundler": "0.0.1", "@internal/eslint-config": "0.0.1", "@internal/ts-config": "0.0.1" }, "keywords": [ "VisActor", "graphics", "renderer", "vrender-core" ], "homepage": "", "bugs": "https://github.com/VisActor/VRender/issues", "repository": { "type": "git", "url": "https://github.com/VisActor/VRender.git", "directory": "packages/vrender-core" }, "author": { "name": "VisActor", "url": "https://VisActor.io/" }, "license": "MIT", "exports": { ".": { "import": "./es/index.js", "require": "./cjs/index.js" } }, "publishConfig": { "access": "public" }, "scripts": { "compile": "tsc --noEmit", "eslint": "eslint --debug --fix src/", "build": "cross-env DEBUG='Bundler*' bundle --clean", "build-umd": "cross-env DEBUG='Bundler*' bundle --clean -f umd", "dev": "cross-env DEBUG='Bundler*' bundle --clean -f es -w", "start": "vite ./__tests__/browser", "test": "jest", "test-live": "npm run test-watch __tests__/unit/theme/line.test.ts", "test-watch": "cross-env DEBUG_MODE=1 jest --watch", "test-cov": "jest -w 16 --coverage", "build:spec-types": "rm -rf ./spec-types && tsc -p ./tsconfig.spec.json --declaration --emitDeclarationOnly --outDir ./spec-types" } }