forked from lowcoder-org/lowcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "lowcoder-core",
"version": "0.0.10",
"type": "module",
"scripts": {
"start": "rollup -c rollup.config.js --watch",
"build": "rollup -c rollup.config.js && rimraf lib/dts",
"test": "jest -i"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"rimraf": "^3.0.2",
"rollup": "^2",
"rollup-plugin-dts": "^5.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"intl-messageformat": "^10.2.1",
"lodash": "^4.17.21",
"lru-cache": "^7.14.1"
},
"description": "lowcoder-core is a JavaScript library for building new components in lowcoder",
"keywords": [
"lowcoder",
"components"
],
"types": "lib/index.d.ts",
"files": [
"lib"
],
"exports": "./lib/index.js",
"author": "Lowcoder"
}