35 lines
686 B
JSON
35 lines
686 B
JSON
{
|
|
"name": "@lunar/core",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Core calculation engine for lunar calendar app",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"dev": "tsup --watch",
|
|
"build": "tsup",
|
|
"test": "vitest run",
|
|
"lint": "eslint .",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"tyme4ts": "^1.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.4.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|