-
-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 606 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "encrypted-dns",
"private": true,
"type": "module",
"scripts": {
"build:clean": "rm -f signed/*.mobileconfig profiles/*.mobileconfig README*.md",
"build": "npm run build:clean && node src/scripts/build.ts",
"sign": "node src/scripts/sign.ts",
"new": "node src/scripts/new.ts",
"test": "node --experimental-strip-types --test src/scripts/new.test.ts src/scripts/sign-single.test.ts",
"format": "prettier --write \"src/*.json\" src/scripts/*.ts"
},
"dependencies": {
"@noble/hashes": "2.2.0",
"micro-key-producer": "0.8.6",
"prettier": "3.6.2"
}
}