@toktokhan-dev/universal
Version:
A universal library built by TOKTOKHAN.DEV
49 lines • 1.26 kB
JSON
{
"name": "@toktokhan-dev/universal",
"version": "0.0.8",
"description": "A universal library built by TOKTOKHAN.DEV",
"author": "TOKTOKHAN.DEV <fe-system@toktokhan.dev>",
"license": "ISC",
"type": "module",
"homepage": "https://toktokhan-dev-docs.vercel.app/docs/universal",
"repository": {
"type": "git",
"url": "https://github.com/TOKTOKHAN-DEV/toktokhan-dev/tree/main/packages/universal"
},
"bugs": {
"url": "https://github.com/TOKTOKHAN-DEV/toktokhan-dev/issues"
},
"main": "dist/index.js",
"files": [
"dist",
"!dist/*.map"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"keywords": [
"universal",
"library",
"toktokhan_dev"
],
"devDependencies": {
"@types/lodash": "^4.17.0",
"@toktokhan-dev/ts-config": "0.0.1"
},
"dependencies": {
"lodash": "^4.17.21"
},
"scripts": {
"dev": "pnpm build && node dist/index.js",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"play": "pnpm build:watch & node --watch play/playground.js",
"test": "jest",
"test:watch": "jest --watch",
"api-extractor": "api-extractor run --local --verbose"
}
}