@runtime-edge/format
Version:
A printf-like string formatter for Runtime Edge
48 lines • 1.05 kB
JSON
{
"name": "@runtime-edge/format",
"description": "A printf-like string formatter for Runtime Edge",
"homepage": "https://github.com/khulnasoft/runtime-edge#readme",
"version": "2.2.1",
"main": "dist/index.js",
"repository": {
"directory": "packages/format",
"type": "git",
"url": "git+https://github.com/khulnasoft/runtime-edge.git"
},
"bugs": {
"url": "https://github.com/khulnasoft/runtime-edge/issues"
},
"keywords": [
"edge",
"runtime-edge",
"format",
"formatter",
"functions",
"printf",
"runtime",
"standard",
"web"
],
"devDependencies": {
"tsup": "8"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"license": "MPL-2.0",
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"clean": "pnpm run clean:node && pnpm run clean:build",
"clean:build": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"prebuild": "pnpm run clean:build",
"test": "TZ=UTC jest"
}
}