Files
free-d-js/packages/free-d/package.json
T
2024-10-29 11:55:53 -05:00

44 lines
1.1 KiB
JSON

{
"name": "@jwetzell/free-d",
"version": "0.1.0",
"description": "libray for encoding/decoding free-d messages",
"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",
"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": "22.8.2",
"rimraf": "6.0.1",
"typescript": "5.6.3"
}
}