-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 898 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 898 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
{
"name": "@livinglogic/livingapi",
"version": "1.26.0",
"description": "Javascript version of the LivingAPI classes of LivingApps",
"repository": {
"type": "git",
"url": "git+https://github.com/LivingLogic/LivingApps.Javascript.LivingAPI.git"
},
"publishConfig": {
"access": "public"
},
"author": "Walter Dörwald",
"license": "MIT",
"scripts": {
"build": "npx rollup -c"
},
"main": "dist/umd/livingapi.js",
"module": "dist/esm-node/livingapi.js",
"browser": "dist/umd/livingapi.js",
"dependencies": {
"@livinglogic/ul4": "~1.19.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"rollup": "^2.52.7",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2"
}
}