-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "phorbas",
"version": "0.1.0",
"description": "Persistent, hashed, opaque, replicable, binary key/content, addressable, storage",
"license": "BSD-2-Clause",
"author": "Shane Holloway <[email protected]>",
"homepage": "https://github.com/shanewholloway/js-phorbas#readme",
"bugs": {
"url": "https://github.com/shanewholloway/js-phorbas/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shanewholloway/js-phorbas.git"
},
"files": [
"cjs/",
"code/",
"esm/",
"umd/"
],
"type": "module",
"main": "./cjs/index.cjs",
"module": "./esm/index.mjs",
"browser": "./umd/index.js",
"exports": {
"./": "./",
".": {
"import": "./esm/index.mjs",
"require": "./cjs/index.cjs"
}
},
"dependencies": {
"@phorbas/hamt": "^0.1.0",
"@phorbas/opaque": "^0.1.6",
"@phorbas/store": "^0.1.2"
},
"devDependencies": {},
"scripts": {
"clean": "rm -rf ./cjs/* ./esm/* ./umd/*",
"build": "rollup --config",
"watch": "npm -s run build -- --watch",
"pretest": "npm -s run build",
"test": "true"
}
}