asciiground
Version:
Library for creating animated ASCII canvas backgrounds supporting generative patterns and extensive configuration options.
101 lines (100 loc) • 2.86 kB
JSON
{
"name": "asciiground",
"version": "0.10.0",
"description": "Library for creating animated ASCII canvas backgrounds supporting generative patterns and extensive configuration options.",
"type": "module",
"main": "dist/asciiground.umd.js",
"module": "dist/asciiground.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/asciiground.es.js",
"require": "./dist/asciiground.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "vite build --mode lib",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist coverage",
"prepare": "npm run build",
"publish:patch": "./scripts/publish.sh patch",
"publish:minor": "./scripts/publish.sh minor",
"publish:major": "./scripts/publish.sh major",
"setup": "./scripts/setup.sh",
"version:check": "npm outdated",
"version:update": "npm update",
"size": "bundlesize",
"docs:dev": "vite --config vite.docs.config.ts",
"docs:build": "vite build --config vite.docs.config.ts",
"commit": "cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:all": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"keywords": [
"ascii",
"animation",
"canvas",
"background",
"typescript",
"library",
"perlin-noise",
"procedural",
"graphics",
"web-animation",
"matrix-effect",
"terminal-graphics",
"ascii-art",
"generative",
"creative-coding"
],
"author": "Karolis Strazdas",
"license": "MIT",
"homepage": "https://github.com/Eoic/asciiground#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Eoic/asciiground.git"
},
"bugs": {
"url": "https://github.com/Eoic/asciiground/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Eoic"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^3.2.4",
"conventional-changelog-cli": "^5.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^9.31.0",
"jsdom": "^26.1.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.36.0",
"vite": "^7.0.4",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}