1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00
Files
tools/packages/stdlib/package.json

54 lines
1.2 KiB
JSON

{
"name": "@robonen/stdlib",
"version": "0.0.1",
"license": "UNLICENSED",
"description": "",
"keywords": [
"stdlib",
"utils",
"tools",
"helpers",
"math",
"algorithms",
"data-structures"
],
"author": "Robonen Andrew <robonenandrew@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/robonen/tools.git",
"directory": "packages/stdlib"
},
"packageManager": "pnpm@9.0.1",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/stdlib.umd.js",
"module": "./dist/stdlib.js",
"types": "./dist/stdlib.d.ts",
"exports": {
".": {
"import": "./dist/stdlib.js",
"require": "./dist/stdlib.umd.js",
"types": "./dist/stdlib.d.ts"
}
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:bench": "vitest bench",
"dev": "vite build --watch",
"build": "vite build"
},
"devDependencies": {
"@robonen/tsconfig": "workspace:*",
"@vitest/coverage-v8": "^1.5.0",
"pathe": "^1.1.2",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.5.0"
}
}