mirror of
https://github.com/docmost/docmost.git
synced 2026-07-07 16:34:29 +10:00
572452c80b
Add the bases feature: formula engine package, grid/table UI, and the base-embed editor extension, with supporting client and server changes.
29 lines
682 B
JSON
29 lines
682 B
JSON
{
|
|
"name": "@docmost/base-formula",
|
|
"homepage": "https://docmost.com",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch",
|
|
"bench": "tsx bench/formula-bench.ts"
|
|
},
|
|
"main": "dist/index.server.js",
|
|
"module": "./dist/index.server.js",
|
|
"exports": {
|
|
"./client": {
|
|
"types": "./dist/index.client.d.ts",
|
|
"default": "./src/index.client.ts"
|
|
},
|
|
"./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": {}
|
|
}
|