-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "@masknet/stego-js",
"version": "0.15.1",
"packageManager": "[email protected]",
"type": "module",
"description": "Steganography, based on frequency domain implemented in JavaScript.",
"repository": "https://github.com/DimensionDev/Stego-JS",
"license": "MIT",
"author": "DimensionDev",
"main": "./esm/node.js",
"module": "./esm/node.js",
"browser": "./esm/dom.js",
"bin": "./esm/cli/cli.js",
"types": "./esm/dom.js",
"scripts": {
"build": "pnpm run build:umd && pnpm run build:dist",
"build:dist": "tsc -b ./tsconfig.json ./tests/tsconfig.json",
"watch:tsc": "tsc -b ./tsconfig.json ./tests/tsconfig.json -w",
"build:umd": "rollup -c",
"ci-build": "pnpm test && pnpm run build",
"test": "vitest",
"release": "pnpm run build && npx changeset publish"
},
"dependencies": {
"@rgba-image/lanczos": "^0.1.1",
"meow": "^13.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@napi-rs/image": "^1.4.0",
"@rollup/plugin-replace": "^6.0.1",
"@swc/core": "^1.10.1",
"@types/node": "^22.10.2",
"@types/offscreencanvas": "^2019.7.3",
"jest-file-snapshot": "^0.7.0",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"rollup-plugin-swc3": "^0.12.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"optionalDependencies": {
"@napi-rs/image": "^1.9.2"
},
"pnpm": {
"onlyBuiltDependencies": []
},
"files": [
"esm",
"!esm/.tsbuildinfo",
"umd"
]
}