@urpflanze/js
Version:
A library for developers who want to approach to creative coding, artists who want to approach coding and for those who find it fun to play with math.
93 lines (92 loc) • 2.74 kB
JSON
{
"name": "@urpflanze/js",
"version": "1.1.5",
"description": "A library for developers who want to approach to creative coding, artists who want to approach coding and for those who find it fun to play with math.",
"license": "GPL-3.0-or-later",
"docs": "https://docs.urpflanze.org/urpflanze",
"keywords": [
"urpflanze",
"creativecoding",
"generativeart",
"plotterart",
"2d",
"mathart",
"typescript"
],
"author": {
"name": "Gennaro Bosone",
"email": "gennaro.bs@gmail.com",
"url": "https://github.com/genbs"
},
"homepage": "https://docs.urpflanze.org/urpflanze/",
"repository": {
"type": "git",
"url": "https://github.com/genbs/urpflanze.git"
},
"bugs": {
"url": "https://github.com/genbs/urpflanze/issues",
"email": "gennaro.bs@gmail.com"
},
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/urpflanze"
},
{
"type": "bitcoin",
"url": "https://explorer.btc.com/btc/address/1CSQq4aMmsA71twvyZHZCjmeB2AmQGCPNq"
},
{
"type": "ethereum",
"url": "https://etherscan.io/address/0x9086c4bb7015c1d6dc79162d02e7e1239c982c01"
}
],
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"browser": "build/umd/urpflanze.js",
"module": "build/esm/urpflanze.js",
"files": [
"build",
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint src --ext .ts",
"build-browser": "npx webpack --config webpack.config.js",
"build": "tsc --p tsconfig.json && tsc --p tsconfig-esm.json && npm run build-browser && npm run build-docs",
"serve-docs": "webpack serve --config webpack.config.docs.js",
"build-docs": "npx webpack --config webpack.config.docs.js --mode production && npx sass ./docs-src/scss/index.scss ./docs/assets/css/app.css --style compressed",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"publishConfig": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"html-webpack-plugin": "^4.5.0",
"sass": "^1.29.0",
"standard-version": "^9.3.1",
"typedoc": "^0.21.9",
"typescript": "4.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.1.0"
},
"dependencies": {
"@urpflanze/animation": "^0.1.3",
"@urpflanze/color": "^0.0.5",
"@urpflanze/core": "^0.5.9",
"@urpflanze/drawer-canvas": "^0.3.1",
"@urpflanze/gcode-exporter": "^0.0.7",
"@urpflanze/svg-exporter": "^0.0.5",
"@urpflanze/svg-importer": "^0.0.6"
}
}