-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 846 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 846 Bytes
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
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"name": "sealed-box",
"author": "Harry Brundage",
"module": "dist/sealed-box.esm.js",
"devDependencies": {
"@gadgetinc/prettier-config": "^0.1.0",
"@types/libsodium-wrappers": "^0.7.8",
"@types/node": "^14.14.22",
"libsodium-wrappers": "^0.7.9",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"blakejs": "^1.1.0",
"tweetnacl": "^1.0.3"
}
}