mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-06 16:03:46 +00:00
e7a03383e6
Bumps [prettier](https://github.com/prettier/prettier) from 3.4.1 to 3.4.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.4.1...3.4.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "@jwetzell/posistagenet",
|
|
"version": "1.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",
|
|
"example:client": "node examples/psn_client.js",
|
|
"example:server": "node examples/psn_server.js",
|
|
"prepublishOnly": "npm run build",
|
|
"lint:check": "eslint ./",
|
|
"format:check": "prettier ./ --check",
|
|
"format:write": "prettier ./ --write"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": {
|
|
"name": "Joel Wetzell",
|
|
"email": "me@jwetzell.com",
|
|
"url": "https://jwetzell.com"
|
|
},
|
|
"repository": "https://github.com/jwetzell/psn-js",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "22.10.1",
|
|
"prettier": "3.4.2",
|
|
"rimraf": "6.0.1",
|
|
"typescript": "5.7.2",
|
|
"eslint": "8.48.0",
|
|
"eslint-config-airbnb": "19.0.4",
|
|
"eslint-config-prettier": "9.0.0"
|
|
}
|
|
}
|