-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
139 lines (139 loc) · 3.09 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "stegjs",
"version": "3.0.1",
"description": "Encrypt message to PNG image.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "prettier . -w",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"lint": "oxlint .",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"version": "napi version"
},
"bin": {
"stegjs": "bin/stegjs"
},
"files": [
"index.d.ts",
"index.js"
],
"napi": {
"name": "stegjs",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-linux-androideabi"
]
}
},
"ava": {
"extensions": {
"ts": "module"
},
"timeout": "2m",
"concurrency": 4,
"failFast": true,
"workerThreads": false,
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
},
"nodeArguments": [
"--import",
"@swc-node/register/esm-register"
]
},
"prettier": {
"semi": false,
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"engines": {
"node": ">= 10",
"npm": ">= 6",
"yarn": ">= 1.22"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm",
"arm64"
],
"keywords": [
"steganography",
"image",
"hide",
"secret",
"array",
"encode",
"decode",
"least",
"significant",
"bit"
],
"author": "Andrey Medvedev <[email protected]> (https://github.com/andmev/)",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/andmev/stegjs.git"
},
"bugs": {
"url": "https://github.com/andmev/stegjs/issues"
},
"homepage": "https://github.com/andmev/stegjs#readme",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"commander": "12.1.0"
},
"devDependencies": {
"@napi-rs/cli": "2.18.4",
"@swc-node/register": "1.10.9",
"@swc/core": "1.7.26",
"@taplo/cli": "0.7.0",
"@types/node": "22.7.4",
"ava": "6.1.3",
"chalk": "5.3.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"npm-run-all2": "6.2.3",
"oxlint": "0.9.9",
"prettier": "3.3.3",
"typescript": "5.6.2"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"oxlint --fix"
],
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"prettier --write"
],
"*.toml": [
"taplo format"
]
},
"packageManager": "[email protected]+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39"
}