-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "protons-runtime",
"version": "5.4.0",
"description": "Shared code to make your bundle smaller when running protons in your app",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/protons/tree/master/packages/protons-runtime#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/protons.git"
},
"bugs": {
"url": "https://github.com/ipfs/protons/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"protons.proto",
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"scripts": {
"clean": "aegir clean",
"lint": "aegir lint",
"dep-check": "aegir dep-check",
"doc-check": "aegir doc-check",
"build": "aegir build",
"release": "aegir release"
},
"dependencies": {
"uint8-varint": "^2.0.2",
"uint8arraylist": "^2.4.3",
"uint8arrays": "^5.0.1"
},
"devDependencies": {
"aegir": "^45.0.1"
}
}