mirror of
https://github.com/jwetzell/osc-js.git
synced 2026-08-06 07:43:43 +00:00
889993c99c
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.2 to 5.9.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 5.9.3 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "@jwetzell/osc",
|
|
"version": "1.7.0",
|
|
"description": "",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/index.js",
|
|
"types": "./dist/types/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
|
|
"build:esm": "tsc -p tsconfig.esm.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
|
|
"build:types": "tsc -p tsconfig.types.json",
|
|
"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/osc-js.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "24.5.2",
|
|
"rimraf": "6.0.1",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|