This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "@ssc-hermes/wnfs-post",
"type": "module",
"version": "0.28.3",
"description": "Fission storage for hermes application",
"main": "index.js",
"scripts": {
"lint": "standardx -v \"./**/*.ts\"",
"build-tests": "node ./test/build.js",
"test": "node ./test/run-tests.js",
"build-cjs": "esbuild src/*.ts --format=cjs --keep-names --outdir=./dist --out-extension:.js=.cjs",
"build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-cjs && tsc",
"preversion": "npm run lint",
"postversion": "git push && git push --tags && npm publish",
"prepublishOnly": "npm run build && tsc"
},
"homepage": "https://github.com/ssc-hermes/wnfs-post#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ssc-hermes/wnfs-post.git"
},
"author": "nichoth",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ssc-hermes/wnfs-post/issues"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": [
"./dist/*.js",
"./dist/*"
],
"require": [
"./dist/*.cjs",
"./dist/*"
]
}
},
"types": "dist/index.d.ts",
"dependencies": {
"@oddjs/odd": "^0.37.1",
"@ssc-hermes/message": "^0.4.0",
"@ssc-hermes/post": "^0.6.1",
"@ssc-hermes/profile": "^0.2.1",
"@ssc-hermes/util": "^0.6.0",
"json-canon": "^1.0.1",
"json-stable-stringify": "^1.0.2",
"monotonic-timestamp": "^0.0.9",
"uint8arrays": "^4.0.3"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.55.0",
"esbuild": "^0.15.18",
"standardx": "^7.0.0",
"tap-arc": "^0.3.5",
"tape-run": "^10.0.0",
"tapzero": "^0.6.1",
"typescript": "^5.0.2"
},
"standardx": {
"ignore": [
"dist/*"
]
}
}