-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.27 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@collage/core",
"version": "0.2.11",
"description": "A library to handle communication between micro frontends and enable an easy to use orchestration",
"repository": {
"type": "git",
"url": "git+https://github.com/SICKAG/collage.git"
},
"author": "Wanja Tschuor <[email protected]>",
"contributors": [
"Susanne Kirchner <[email protected]>",
"Joshua Hagedorn <[email protected]>"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/SICKAG/collage/issues"
},
"homepage": "https://SICKAG.github.io/collage",
"keywords": [
"micro frontends",
"micro-frontends",
"microfrontend"
],
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"type": "module",
"main": "./dist/collage.umd.js",
"module": "./dist/collage.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types":"./dist/index.d.ts",
"default": "./dist/collage.es.js"
},
"require": {
"types":"./dist/index.d.ts",
"default": "./dist/collage.umd.js"
}
}
},
"scripts": {
"dev": "vite",
"doc": "cross-env DEVELOP=true vuepress dev ./docs -c ./docs/vuepress-config.mjs -p 8090",
"build": "tsc && vite build",
"build:doc": "cross-env BASE_URL=collage vuepress build ./docs -c ./docs/vuepress-config.mjs",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"lint": "eslint ./src --ext js,ts",
"lint:fix": "eslint ./src --ext js,ts --fix"
},
"dependencies": {
"lodash.mergewith": "^4.6.2",
"penpal": "^6.2.1"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/lodash.mergewith": "^4.6.6",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jest-junit": "^14.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vite": "^4.4.11",
"vite-plugin-dts": "^1.6.6",
"vuepress": "^2.0.0-beta.67"
}
}