This commit is contained in:
Erik 2023-04-12 22:11:45 +03:00
parent a52eb1c9e8
commit c1ea748210
Signed by: Navy.gif
GPG Key ID: 2532FBBB61C65A68

View File

@ -1,20 +1,30 @@
{ {
"name": "@navy.gif/wrappers", "name": "@navy.gif/wrappers",
"version": "1.0.0", "version": "1.1.0",
"description": "Various wrapper classes I use in my projects", "description": "Various wrapper classes I use in my projects",
"main": "index.js",
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git", "repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
"author": "Navy.gif", "author": "Navy.gif",
"license": "MIT", "license": "MIT",
"private": false, "private": false,
"type": "module", "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": [ "files": [
"build" "build/**/*"
], ],
"scripts": { "scripts": {
"build": "tsc", "build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js",
"test": "tsc && jest", "test": "yarn build && jest",
"release": "tsc && yarn publish", "release": "yarn build && yarn publish",
"lint": "eslint --fix" "lint": "eslint --fix"
}, },
"devDependencies": { "devDependencies": {