This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (79 loc) · 2.06 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
84
85
86
87
88
89
90
91
92
93
94
{"$schema":"https://json.schemastore.org/package.json",
"name": "astro-portal",
"version": "1.0.3",
"type": "module",
"license": "MIT",
"private": false,
"main": "./dist/CJS/index.js",
"module": "./dist/ESM/index.js",
"types": "./dist/ESM/index.d.ts",
"exports": {
".": {
"require": "./dist/CJS/index.js",
"import": "./dist/ESM/index.js"
},
"./*": {
"require": ["./dist/CJS/*.js", "./dist/CJS/*"],
"import": ["./dist/ESM/*.js", "./dist/ESM/*"]
}
},
"typesVersions": {
"*": {
"*":[
"./dist/ESM/*.d.ts",
"./dist/ESM/*/index.d.ts",
"./dist/ESM/index.d.ts"
]
}
},
"scripts": {
"build": "npm-run-all build:*",
"build:1": "del-cli ./dist/**",
"build:2": "make-dir ./dist",
"build:3": "ttsc --project ./.tsconfig/CJS.json",
"build:4": "ttsc --project ./.tsconfig/ESM.json",
"build:5": "cpy ./**/*.d.ts ../dist/CJS/ --parents --cwd=./src/",
"build:6": "cpy ./**/*.d.ts ../dist/ESM/ --parents --cwd=./src/",
"build:7": "echo {\"type\":\"commonjs\"} > ./dist/CJS/package.json",
"build:8": "echo {\"type\":\"module\"} > ./dist/ESM/package.json",
"test": "jest"
},
"dependencies": {
"lazy-portal": "1.0.0"
},
"devDependencies": {
"@types/node": "17.0.32",
"typescript": "4.6.4",
"ts-node": "10.7.0",
"tslib": "2.4.0",
"ttypescript": "1.5.13",
"typescript-transform-paths": "3.3.1",
"cpy-cli": "3.1.1",
"del-cli": "4.0.1",
"make-dir-cli": "3.0.0",
"move-file-cli": "2.0.0",
"npm-run-all": "4.1.5",
"jest": "28.1.0",
"@types/jest": "27.5.1",
"ts-jest": "28.0.2",
"astro": "1.0.0-beta.27"
},
"keywords": [
"astro",
"component",
"lit",
"micro frontend",
"microfrontend",
"portal",
"preact",
"react",
"solid-js",
"solid",
"streaming",
"svelte",
"transport",
"vue",
"webcomponent",
"web component"
]
}