mirror of
https://github.com/jwetzell/rttrp-js.git
synced 2026-07-26 10:28:48 +00:00
4fea9ec64d
Bumps [prettier](https://github.com/prettier/prettier) from 3.8.1 to 3.8.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.8.1...3.8.2) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.8.2 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "@jwetzell/rttrp",
|
|
"version": "0.1.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",
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
"build:types": "tsc -p tsconfig.types.json",
|
|
"prepublishOnly": "npm run build",
|
|
"lint:check": "eslint ./src",
|
|
"format:check": "prettier ./ --check",
|
|
"format:write": "prettier ./ --write",
|
|
"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": "https://github.com/jwetzell/rttrp-js",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "10.0.1",
|
|
"@types/node": "25.6.0",
|
|
"eslint": "10.2.0",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"eslint-plugin-prettier": "5.5.5",
|
|
"globals": "17.5.0",
|
|
"prettier": "3.8.2",
|
|
"rimraf": "6.1.3",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.58.1"
|
|
}
|
|
}
|