kaplay-plugin-text
Version:
KAPLAY plugin for styled text
99 lines (98 loc) • 2.48 kB
JSON
{
"name": "kaplay-plugin-text",
"version": "1.0.0",
"description": "KAPLAY plugin for styled text",
"author": "Mark <mark@remarkablemark.org> (https://remarkablemark.org)",
"main": "./dist/plugin.cjs",
"module": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/plugin.d.mts",
"default": "./dist/plugin.mjs"
},
"require": {
"types": "./dist/plugin.d.cts",
"default": "./dist/plugin.cjs"
}
},
"./global": {
"import": {
"types": "./global.d.ts",
"default": "./global.js"
},
"require": {
"types": "./global.d.ts",
"default": "./global.js"
}
}
},
"scripts": {
"build": "vite build",
"clean": "rm -rf coverage dist docs",
"docs": "typedoc",
"docs:watch": "npm run docs -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:package": "publint",
"lint:tsc": "tsc",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run lint && npm run lint:tsc && npm run test:ci",
"start": "vite --open",
"test": "vitest run",
"test:ci": "CI=true npm test -- --color --coverage",
"test:watch": "vitest --coverage.enabled=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remarkablegames/kaplay-plugin-text.git"
},
"bugs": {
"url": "https://github.com/remarkablegames/kaplay-plugin-text/issues"
},
"keywords": [
"kaplay",
"plugin",
"text",
"ui",
"game"
],
"peerDependencies": {
"kaplay": "*"
},
"devDependencies": {
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@eslint/js": "10.0.1",
"@types/node": "26.4.1",
"@vitest/coverage-v8": "4.1.11",
"eslint": "10.9.1",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-simple-import-sort": "14.0.0",
"eslint-plugin-tsdoc": "0.5.2",
"husky": "9.1.7",
"kaplay": "3001.0.19",
"lint-staged": "17.4.1",
"prettier": "3.9.6",
"publint": "0.3.24",
"typedoc": "0.28.20",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0",
"vite": "8.2.2",
"vite-plugin-dts": "5.1.0",
"vitest": "4.1.11"
},
"files": [
"dist/",
"global.d.ts",
"global.js"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/remarkablemark"
}
],
"license": "MIT"
}