thena
Version:
A simple, lightweight, and fast utility library for Node and the browser.
59 lines • 1.4 kB
JSON
{
"name": "thena",
"version": "0.0.10",
"types": "index.d.ts",
"description": "A simple, lightweight, and fast utility library for Node and the browser.",
"type": "module",
"author": "TheCommieAxolotl",
"main": "dist/index.js",
"funding": "https://github.com/TheCommieAxolotl/thena?sponsor=1",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./node": {
"import": "./dist/node.js",
"require": "./dist/node.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/TheCommieAxolotl/thena.git"
},
"homepage": "https://thenajs.vercel.app",
"keywords": [
"thena",
"util",
"utility",
"node",
"browser",
"typescript"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^18.15.5",
"rollup": "^2.56.3",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"vitepress": "1.0.0-alpha.61",
"vue": "^3.2.47"
},
"files": [
"README.md",
"LICENSE",
"dist",
"index.d.ts",
"node.d.ts"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node ./test/index.test.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
}
}