-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 847 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
{
"name": "observer-request-manager",
"version": "1.0.0",
"description": "Request manager with observer design patter in typescript and example usages for jsonplaceholder",
"main": "index.js",
"author": "MKare",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.cjs",
"serve": "lite-server"
},
"devDependencies": {
"@open-wc/building-rollup": "^2.2.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"deepmerge": "^4.3.1",
"lite-server": "^2.6.1",
"rimraf": "^5.0.1",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.0.4"
},
"lite": {
"baseDir": "dist",
"open": true,
"files": [
"dist/**/*.{html,htm,css,js}"
]
}
}