mirror of
https://github.com/jwetzell/free-d-js.git
synced 2026-07-26 10:28:44 +00:00
9e17e87d99
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
957 B
JSON
42 lines
957 B
JSON
{
|
|
"name": "@jwetzell/free-d",
|
|
"version": "0.1.0",
|
|
"description": "libray for encoding/decoding free-d messages",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.cts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "tsdown",
|
|
"prepublishOnly": "npm run build",
|
|
"pretest": "npm run build",
|
|
"test": "node --test --experimental-test-coverage"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": {
|
|
"name": "Joel Wetzell",
|
|
"email": "me@jwetzell.com",
|
|
"url": "https://jwetzell.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jwetzell/free-d-js.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "25.9.1",
|
|
"rimraf": "6.1.3",
|
|
"tsdown": "0.22.1",
|
|
"typescript": "6.0.3"
|
|
}
|
|
}
|