-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.64 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
{
"name": "mr-world",
"version": "0.0.12",
"private": false,
"description": "The global variable integration for Astro 🌐",
"keywords": [
"mr-world",
"astro",
"astrojs",
"withastro",
"astro-integration",
"astro-component",
"global",
"globalThis",
"window",
"global variable",
"global variables",
"serialize",
"deserialize"
],
"homepage": "https://github.com/jlarmstrongiv/mr-world/#readme",
"bugs": "https://github.com/jlarmstrongiv/mr-world/issues",
"repository": "https://github.com/jlarmstrongiv/mr-world.git",
"license": "MIT",
"author": "John L. Armstrong IV",
"sideEffects": false,
"type": "module",
"typesVersions": {
"*": {
"integration": [
"./dist/integration/index.d.ts"
],
"deserialize": [
"./dist/deserialize/index.d.ts"
],
"serialize": [
"./dist/serialize/index.d.ts"
]
}
},
"exports": {
"./integration": {
"types": "./dist/integration/index.d.ts",
"require": "./dist/integration/index.cjs",
"import": "./dist/integration/index.js"
},
"./serialize": "./dist/serialize/index.ts",
"./deserialize": {
"types": "./dist/deserialize/index.d.ts",
"require": "./dist/deserialize/index.cjs",
"import": "./dist/deserialize/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup-node",
"watch": "tsup-node --watch"
},
"devDependencies": {
"@types/node": "^20.2.5",
"tsup": "^8.0.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"astro": "^3.0.8 || ^4.0.0"
}
}