-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "@rahulv.dev/rng",
"version": "1.2.2",
"description": "A secure random number generator.",
"main": "dist/rng.node.js",
"browser": "dist/rng.browser.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/rng.node.js",
"require": "./dist/rng.node.js",
"types": "./types/rng.node.d.ts"
},
"./browser": {
"import": "./dist/rng.browser.js",
"require": "./dist/rng.browser.js",
"types": "./types/rng.browser.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest --run"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rahulv-official/random-number-generator.git"
},
"keywords": [
"random-number-generator",
"rng"
],
"author": "Rahul Vashishtha <https://rahulv.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rahulv-official/random-number-generator/issues"
},
"homepage": "https://github.com/rahulv-official/random-number-generator#readme",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^22.0.0",
"semantic-release": "^24.0.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.5"
}
}