This repository has been archived by the owner on Jul 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
116 lines (116 loc) · 3.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@devtomio/sodium",
"version": "0.4.3",
"description": "Libsodium for Node.js",
"module": "dist/index.mjs",
"typedocMain": "src/index.ts",
"repository": "https://github.com/devtomio/sodium.git",
"author": "Tomio <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"napi": {
"name": "sodium",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf"
]
}
},
"scripts": {
"lint": "eslint lib tests --ext ts",
"format": "prettier --write . && cargo +nightly fmt",
"docs": "typedoc",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn upgrade-interactive",
"ts:build": "tsc -b lib && rollup -c scripts/rollup.bundle.ts && gen-esm-wrapper dist/index.js dist/index.mjs",
"rs:build": "napi build --platform --release",
"rs:build-dev": "napi build",
"artifacts": "napi artifacts",
"clean": "node scripts/clean.mjs",
"watch": "tsc -b lib -w",
"prepublishOnly": "yarn ts:build && napi prepublish -t npm",
"version": "napi version",
"bench": "node -r @swc-node/register benchmark/bench.ts"
},
"dependencies": {
"@node-rs/helper": "^1.3.3",
"tslib": "^2.4.0"
},
"devDependencies": {
"@favware/rollup-type-bundler": "^1.0.7",
"@napi-rs/cli": "^2.9.0",
"@sapphire/eslint-config": "^4.3.6",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/ts-config": "^3.3.4",
"@swc-node/register": "^1.5.1",
"@types/chloride": "^2.4.0",
"@types/conventional-changelog": "^3",
"@types/eslint": "^8",
"@types/jest": "^28.1.1",
"@types/libsodium-wrappers": "^0",
"@types/node": "^17.0.21",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"benny": "^3.7.1",
"chloride": "^2.4.1",
"conventional-changelog": "^3.1.25",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"gen-esm-wrapper": "^1.1.3",
"jest": "^28.1.1",
"jest-circus": "^28.1.1",
"libsodium-wrappers": "^0.7.10",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"rollup": "^2.75.6",
"rollup-plugin-version-injector": "^1.3.3",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"tweetnacl": "^1.0.3",
"typedoc": "^0.22.17",
"typedoc-plugin-extras": "^2.2.3",
"typedoc-plugin-mdn-links": "^1.0.6",
"typescript": "^4.7.3"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"keywords": [
"sodium",
"libsodium",
"typescript",
"ts",
"yarn",
"napi",
"napi-rs",
"rust",
"bindings"
],
"bugs": {
"url": "https://github.com/devtomio/sodium/issues"
},
"homepage": "https://devtomio.github.io/sodium",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"prettier": "@sapphire/prettier-config"
}