UNPKG

jamis-formula

Version:

负责 amis 里面的表达式实现,内置公式,编辑器等

69 lines 1.94 kB
{ "name": "jamis-formula", "version": "14.0.6", "description": "负责 amis 里面的表达式实现,内置公式,编辑器等", "type": "module", "main": "lib/index.js", "module": "lib/index.js", "types": "lib/index.d.ts", "exports": { ".": { "types": "./lib/index.d.ts", "import": "./lib/index.js", "require": "./lib/index.js" }, "./lib/doc": { "import": "./lib/doc.js", "require": "./lib/doc.js" } }, "repository": { "type": "git", "url": "git+https://github.com/aisuda/amis-tpl.git" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "keywords": [ "amis", "tpl", "parser", "formula" ], "files": [ "lib" ], "author": "fex", "license": "MIT", "bugs": { "url": "https://github.com/aisuda/amis-tpl/issues" }, "homepage": "https://github.com/aisuda/amis-tpl#readme", "dependencies": { "lodash-es": "^4.17.21", "moment": "^2.29.4", "tslib": "^2.3.1", "dayjs": "^1.11.13" }, "devDependencies": { "@types/doctrine": "0.0.5", "@types/lodash-es": "^4.17.6", "@types/node": "^16.11.56", "doctrine": "^3.0.0", "moment-timezone": "^0.5.33", "rimraf": "^3.0.2", "sass": "^1.54.0" }, "browserslist": "IE >= 11", "scripts": { "build": "pnpm run clean-dist && pnpm run tsbuild && pnpm run genDoc", "lib": "pnpm run clean-dist && NODE_ENV=production IS_LIB=1 rollup -c", "clean-dist": "rimraf lib/*", "declaration": "tsc --project tsconfig-for-declaration.json --allowJs --declaration --emitDeclarationOnly --declarationDir ./lib --rootDir ./src", "tscheck": "tsc --noEmit", "tsbuild": "rimraf tsconfig.tsbuildinfo && tsc --project tsconfig.json --declaration --emitDeclarationOnly", "tswatch": "tsc -w --project tsconfig.json --declaration", "genDoc": "tsx ./scripts/genDoc.ts", "build:rollup": "NODE_ENV=production rollup -c" } }