forked from sanity-io/get-random-values-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "get-random-values-esm",
"version": "1.0.1",
"description": "A wrapper that rebundles [`get-random-values`](https://www.npmjs.com/package/get-random-values) into ESM, so you can use it in your `vite`, `skypack`, or wherever you need ESM.",
"keywords": [
"crypto",
"get-random-values",
"getRandomValues",
"webcrypto"
],
"homepage": "https://github.com/sanity-io/get-random-values-esm#readme",
"bugs": {
"url": "https://github.com/sanity-io/get-random-values-esm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/get-random-values-esm.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"import": "./index.mjs",
"browser": "./index.mjs",
"deno": "./index.mjs",
"node": "./index.cjs",
"default": "./index.js"
}
},
"main": "./index.js",
"module": "./index.mjs",
"browser": "./index.mjs",
"types": "./index.d.ts",
"files": [
"index.js",
"index.mjs",
"index.d.ts",
"index.cjs"
],
"scripts": {
"format": "prettier . --write",
"prepublishOnly": "npm test",
"test": "package-check && prettier . --check"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
],
"semi": false,
"singleQuote": true
},
"dependencies": {
"get-random-values": "^1.2.2"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.10"
}
}