41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@navy.gif/<PKG>",
|
|
"version": "1.0.0",
|
|
"description": "Description",
|
|
"author": "Navy.gif",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"repository": "",
|
|
|
|
"type": "module",
|
|
"main": "build/cjs/index.js",
|
|
"module": "build/esm/index.js",
|
|
"types": "./build/esm/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/esm/index.js",
|
|
"require": "./build/cjs/index.js",
|
|
"default": "./build/cjs/index.js",
|
|
"types": "./build/esm/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"build/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
"@typescript-eslint/parser": "^5.58.0",
|
|
"eslint": "^8.26.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"dependencies": { },
|
|
"scripts": {
|
|
"start": "node --enable-source-maps build/index.js",
|
|
"test": "yarn build && jest",
|
|
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js",
|
|
"release": "yarn build && yarn publish",
|
|
"lint": "eslint --fix"
|
|
}
|
|
}
|
|
|