You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

65 lines
1.4 KiB

{
"name": "@meoc/utils",
"type": "module",
"version": "0.2.2",
"description": "",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"funding": "https://github.com/MellowCo/utils",
"homepage": "https://github.com/MellowCo/utils",
"repository": {
"type": "git",
"url": "https://github.com/MellowCo/utils"
},
"bugs": "https://github.com/MellowCo/utils/issues",
"keywords": [
"utils"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"dayjs": "^1.11.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@types/node": "^18.11.10",
"bumpp": "^8.2.1",
"eslint": "^8.28.0",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vite": "^3.2.4",
"vitest": "^0.25.3"
}
}