-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.57 KB
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
{
"name": "get-random-values",
"version": "4.1.0",
"description": "`window.crypto.getRandomValues` with fallback to Node.js crypto",
"keywords": [
"crypto"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kenany/get-random-values.git"
},
"license": "MIT",
"author": "Kenan Yildirim <kenan@kenany.me> (https://kenany.me/)",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"engines": {
"node": "20 || 22 || >=24"
},
"scripts": {
"clean": "rimraf --glob test/**/*.d.ts *.d.ts || true",
"lint": "biome check .",
"release": "semantic-release",
"type-coverage": "type-coverage --at-least 100 --detail --strict",
"prebuild": "pnpm run clean",
"build": "tsc",
"pretest": "pnpm run build",
"test": "tape test/*.js",
"posttest": "pnpm run lint && pnpm run type-coverage",
"prepack": "pnpm run build"
},
"dependencies": {
"window-or-global": "^1.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@containerbase/semantic-release-pnpm": "1.3.33",
"@kenan/biome-config": "1.0.6",
"@tsconfig/node20": "20.1.9",
"@types/lodash.isfunction": "3.0.9",
"@types/tape": "5.8.1",
"conventional-changelog-conventionalcommits": "9.3.1",
"is-browser": "2.1.0",
"lodash.isfunction": "3.0.9",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"tape": "5.9.0",
"type-coverage": "2.29.7",
"typescript": "6.0.2"
},
"browser": {
"crypto": false
}
}