svg-turtle
Version:
a turtle graphics library with SVG output
51 lines (50 loc) • 1.41 kB
JSON
{
"name": "svg-turtle",
"version": "0.1.9",
"description": "a turtle graphics library with SVG output",
"type": "module",
"main": "./dist/svg-turtle.js",
"module": "./dist/svg-turtle.esm.js",
"svelte": "./dist/svg-turtle.esm.js",
"types": "./dist/svg-turtle.d.ts",
"exports": {
".": {
"require": "./dist/svg-turtle.js",
"import": "./dist/svg-turtle.esm.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js && tsc && mv src/*.d.ts dist && rm src/*.js*",
"agadoo": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/svg-turtle.git"
},
"keywords": [
"turtle-graphics",
"svg"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/svg-turtle/issues"
},
"homepage": "https://github.com/rozek/svg-turtle#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"agadoo": "^2.0.0",
"jszip": "^3.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"javascript-interface-library": "^1.0.0"
}
}