-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
{
"name": "aegis-ts",
"version": "0.0.2",
"type": "module",
"description": "TypeScript implementation of Aegis128L and Aegis256",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Stefan Knoblich"
},
"homepage": "https://github.com/stknob/aegis-ts",
"keywords": [
"aegis",
"aegis128l",
"aegis256",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stknob/aegis-ts.git"
},
"bugs": {
"url": "https://github.com/stknob/aegis-ts/issues"
},
"dependencies": {
"@noble/ciphers": "1.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
"@types/node": "20.14.15",
"glob": "11.0.0",
"micro-bmark": "0.3.1",
"tsup": "8.2.4",
"tsx": "4.19.0",
"typescript": "5.5.4"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
"./aegis128l.js": {
"import": "./dist/aegis128l.js",
"default": "./dist/aegis128l.cjs"
},
"./aegis256.js": {
"import": "./dist/aegis256.js",
"default": "./dist/aegis256.cjs"
}
},
"scripts": {
"build": "tsup",
"lint": "tsc",
"test": "tsx test/index.mts",
"prof": "tsx --prof src/index.mts",
"bench": "tsx benchmark/index.mts",
"ci": "yarn run build && yarn run lint && yarn run test && yarn run check-exports",
"check-exports": "attw --pack ."
}
}