@ianacaburian/generate-key-file 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +39 -33
package/README.md CHANGED
@@ -1,2 +1,3 @@
1
1
  # generate-key-file
2
+
2
3
  Provides juce_KeyGeneration::generateKeyFile() for javascript.
package/package.json CHANGED
@@ -1,35 +1,41 @@
1
1
  {
2
- "name": "@ianacaburian/generate-key-file",
3
- "version": "0.0.2",
4
- "description": "Provides juce_KeyGeneration::generateKeyFile() for javascript.",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
- "files": [
9
- "dist"
10
- ],
11
- "scripts": {
12
- "build": "tsup",
13
- "test": "echo \"Error: no test specified\" && exit 1"
14
- },
15
- "repository": {
16
- "type": "git",
17
- "url": "git+https://github.com/ianacaburian/generate-key-file.git"
18
- },
19
- "keywords": [
20
- "key-file",
21
- "juce",
22
- "rsa"
23
- ],
24
- "author": "ianacaburian",
25
- "license": "MIT",
26
- "bugs": {
27
- "url": "https://github.com/ianacaburian/generate-key-file/issues"
28
- },
29
- "homepage": "https://github.com/ianacaburian/generate-key-file#readme",
30
- "devDependencies": {
31
- "ts-node": "^10.9.2",
32
- "tsup": "^8.3.0",
33
- "typescript": "^5.6.2"
34
- }
2
+ "name": "@ianacaburian/generate-key-file",
3
+ "version": "0.0.3",
4
+ "description": "Provides juce_KeyGeneration::generateKeyFile() for javascript.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "tsup",
13
+ "test": "echo \"Error: no test specified\" && exit 1"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/ianacaburian/generate-key-file.git"
18
+ },
19
+ "keywords": [
20
+ "key-file",
21
+ "juce",
22
+ "rsa"
23
+ ],
24
+ "author": "ianacaburian",
25
+ "license": "MIT",
26
+ "bugs": {
27
+ "url": "https://github.com/ianacaburian/generate-key-file/issues"
28
+ },
29
+ "homepage": "https://github.com/ianacaburian/generate-key-file#readme",
30
+ "devDependencies": {
31
+ "@typescript-eslint/eslint-plugin": "^8.7.0",
32
+ "@typescript-eslint/parser": "^8.7.0",
33
+ "eslint": "^9.11.1",
34
+ "eslint-config-prettier": "^9.1.0",
35
+ "eslint-plugin-prettier": "^5.2.1",
36
+ "prettier": "^3.3.3",
37
+ "ts-node": "^10.9.2",
38
+ "tsup": "^8.3.0",
39
+ "typescript": "^5.6.2"
40
+ }
35
41
  }