-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.12 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
{
"name": "@zarrita/storage",
"version": "0.1.0-next.8",
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./fetch": {
"types": "./src/fetch.ts",
"import": "./src/fetch.ts"
},
"./fs": {
"types": "./src/fs.ts",
"import": "./src/fs.ts"
},
"./ref": {
"types": "./src/ref.ts",
"import": "./src/ref.ts"
},
"./zip": {
"types": "./src/zip.ts",
"import": "./src/zip.ts"
}
},
"dependencies": {
"reference-spec-reader": "^0.2.0",
"unzipit": "^1.4.3"
},
"publishConfig": {
"main": "dist/src/index.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./fetch": {
"types": "./dist/src/fetch.d.ts",
"import": "./dist/src/fetch.js"
},
"./fs": {
"types": "./dist/src/fs.d.ts",
"import": "./dist/src/fs.js"
},
"./ref": {
"types": "./dist/src/ref.d.ts",
"import": "./dist/src/ref.js"
},
"./zip": {
"types": "./dist/src/zip.d.ts",
"import": "./dist/src/zip.js"
}
}
}
}