mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 10:54:44 +00:00
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"name": "@robonen/platform",
|
|
"version": "0.0.4",
|
|
"license": "Apache-2.0",
|
|
"description": "Platform dependent utilities for javascript development",
|
|
"keywords": [
|
|
"javascript",
|
|
"typescript",
|
|
"browser",
|
|
"platform",
|
|
"node",
|
|
"bun",
|
|
"deno"
|
|
],
|
|
"author": "Robonen Andrew <robonenandrew@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/robonen/tools.git",
|
|
"directory": "packages/platform"
|
|
},
|
|
"packageManager": "pnpm@10.30.2",
|
|
"engines": {
|
|
"node": ">=24.13.1"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"./browsers": {
|
|
"types": "./dist/browsers.d.ts",
|
|
"import": "./dist/browsers.js",
|
|
"require": "./dist/browsers.cjs"
|
|
},
|
|
"./multi": {
|
|
"types": "./dist/multi.d.ts",
|
|
"import": "./dist/multi.js",
|
|
"require": "./dist/multi.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "oxlint -c oxlint.config.ts",
|
|
"test": "vitest run",
|
|
"dev": "vitest dev",
|
|
"build": "tsdown"
|
|
},
|
|
"devDependencies": {
|
|
"@robonen/oxlint": "workspace:*",
|
|
"@robonen/tsconfig": "workspace:*",
|
|
"@robonen/tsdown": "workspace:*",
|
|
"oxlint": "catalog:",
|
|
"tsdown": "catalog:"
|
|
}
|
|
}
|