-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.18 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
{
"name": "@joph-auth/nd-aes-webcrypto",
"version": "1.0.2",
"description": "AES-GCM encryption with PBKDF2 derived keys using the Web Crypto API",
"main": "dist/lib-cjs/index.js",
"types": "dist/lib-cjs/index.d.ts",
"scripts": {
"clean": "rimraf .parcel-cache && rimraf dist",
"prepublishOnly": "yarn clean && yarn build",
"build": "yarn build:cjs && yarn build:esm && yarn build:web && yarn build:web:min",
"build:cjs": "tsc",
"build:esm": "tsc -m ES2020 --outDir dist/lib-esm",
"build:web": "parcel build src/index.ts --public-url . --out-dir dist/web-bundle --out-file dist/web-bundle/nd-aes-crypto.js --global ndAesCrypto --cache-dir .parcel-cache --no-minify",
"build:web:min": "parcel build src/index.ts --public-url . --out-dir dist/web-bundle --out-file dist/web-bundle/nd-aes-crypto.min.js --global ndAesCrypto --cache-dir .parcel-cache"
},
"repository": {
"type": "git",
"url": "https://github.com/joebell1329/nd-aes-webcrypto"
},
"keywords": [
"AES",
"PBKDF2",
"crypto"
],
"author": "Joe Bell",
"license": "MIT",
"devDependencies": {
"parcel-bundler": "^1.12.5",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
}
}