39 lines
643 B
JSON
39 lines
643 B
JSON
{
|
|
"name": "@openinula/store",
|
|
"version": "0.0.0",
|
|
"description": "DLight shared store",
|
|
"author": {
|
|
"name": "IanDx",
|
|
"email": "iandxssxx@gmail.com"
|
|
},
|
|
"keywords": [
|
|
"dlight.js"
|
|
],
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup --sourcemap"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^6.5.0",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/index.ts"
|
|
],
|
|
"format": [
|
|
"esm"
|
|
],
|
|
"clean": true,
|
|
"dts": true,
|
|
"minify": true
|
|
}
|
|
}
|