@randajan/simple-lib
Version:
Supersimple start for developing custom js library
55 lines (54 loc) • 1.31 kB
JSON
{
"name": "@randajan/simple-lib",
"version": "3.3.0",
"description": "Supersimple start for developing custom js library",
"repository": "randajan/simple-lib",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./peers": "./dist/peers.js",
"./lib": "./dist/lib/index.js",
"./web": "./dist/web/index.js",
"./node": "./dist/node/index.js",
"./info": "./dist/info/index.js"
},
"scripts": {
"build": "node ./build.js",
"test": "node ./test.js"
},
"license": "MIT",
"dependencies": {
"app-root-path": "^3.1.0",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"esbuild": "^0.25.1",
"esbuild-node-externals": "^1.13.0",
"fs-extra": "^11.2.0",
"live-server": "^1.2.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"esbuild",
"library",
"boilerplate",
"simple",
"dev",
"live-server",
"chokidar"
],
"homepage": "https://github.com/randajan/simple-lib",
"bugs": {
"url": "https://github.com/randajan/simple-lib/issues"
},
"author": {
"name": "Jan Randa",
"email": "jnranda@gmail.com",
"url": "https://www.linkedin.com/in/randajan/"
}
}