-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 930 Bytes
/
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
{
"name": "earthstar-data",
"version": "0.3.0",
"description": "Data structures for earthstar",
"repository": {
"type": "git",
"url": "https://github.com/chrisdevereux/earthstar-data"
},
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "tsup --dts --format esm,cjs",
"test": "vitest"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": true,
"minify": false,
"clean": true
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"earthstar": "^10.0.1",
"tsup": "^6.6.0",
"vitest": "^0.28.3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"earthstar": "^10.0.1"
}
}