-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "@solar-republic/aes-128-siv-js",
"version": "0.1.8",
"type": "module",
"repository": "SolarRepublic/belt",
"license": "Apache-2.0",
"author": {
"name": "Blake Regalia",
"email": "[email protected]"
},
"main": "dist/main.mjs",
"module": "dist/main.mjs",
"browser": "dist/main.mjs",
"types": "dist/main.d.ts",
"files": [
"dist/main.*"
],
"scripts": {
"dev": "yarn build -w",
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "node --loader ts-node/esm test/aes-cmac.ts && node --loader ts-node/esm test/aes-siv.ts",
"pub": "npm publish --access=public"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^20.1.3",
"@types/web": "^0.0.99",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-plugin-i": "^2.27.5-1",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"rollup": "^3.21.6",
"rollup-plugin-filesize": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@solar-republic/belt": "0.4.0"
}
}