mirror of
https://github.com/docmost/docmost.git
synced 2026-06-10 10:13:01 +08:00
28 lines
640 B
JSON
28 lines
640 B
JSON
{
|
|
"name": "@docmost/base-formula",
|
|
"homepage": "https://docmost.com",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch"
|
|
},
|
|
"main": "dist/index.server.js",
|
|
"module": "./dist/index.server.js",
|
|
"exports": {
|
|
"./client": {
|
|
"types": "./dist/index.client.d.ts",
|
|
"default": "./dist/index.client.js"
|
|
},
|
|
"./server": {
|
|
"types": "./dist/index.server.d.ts",
|
|
"default": "./dist/index.server.js"
|
|
},
|
|
".": {
|
|
"types": "./dist/index.server.d.ts",
|
|
"default": "./dist/index.server.js"
|
|
}
|
|
},
|
|
"types": "dist/index.server.d.ts",
|
|
"dependencies": {}
|
|
}
|