-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2 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
61
62
{
"name": "@ianacaburian/generate-key-file",
"version": "1.0.1",
"description": "Ports juce_KeyGeneration::generateKeyFile() to node.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist && npm run cm:clean",
"lint": "eslint src",
"cm:clean": "rm -rf test/bin/* && cd test/console && ./cmake/clean-build.sh",
"cm:open": "cd test/console && ./cmake/open-xcode-macos-dev.sh",
"cm:install": "cmake -S test/console -B test/console/build && cmake --build test/console/build && cmake --install test/console/build --prefix test",
"build": "npm run lint && npm run cm:install && tsup",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianacaburian/generate-key-file.git"
},
"keywords": [
"auth",
"cryptography",
"juce",
"keyfile",
"rsa"
],
"author": "ianacaburian",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianacaburian/generate-key-file/issues"
},
"homepage": "https://github.com/ianacaburian/generate-key-file#readme",
"devDependencies": {
"@eslint/js": "^9.11.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/jsbn": "^1.2.33",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-check": "^3.22.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "5.5.4",
"typescript-eslint": "^8.7.0",
"vitest": "^2.1.1",
"zod-fast-check": "^0.10.1"
},
"dependencies": {
"fast-xml-parser": "^4.5.0",
"jsbn": "^1.1.0",
"zod": "^3.23.8"
}
}