forked from DimensionDev/Stego-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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": "@dimensiondev/stego-js",
"version": "0.11.1",
"description": "Steganography, based on frequency domain implemented in JavaScript.",
"repository": "https://github.com/DimensionDev/Stego-JS",
"license": "MIT",
"author": "DimensionDev",
"main": "./cjs/node.js",
"module": "./esm/node.js",
"browser": "./cjs/dom.js",
"bin": "./cjs/cli.js",
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build:umd && npm run build:dist",
"build:dist": "tsc && tsc -p tsconfig.esm.json",
"build:umd": "rollup -c",
"clean": "rimraf umd cjs esm",
"prepublishOnly": "npm run build",
"test": "jest src --silent",
"eslint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@rgba-image/lanczos": "^0.1.0",
"meow": "^7.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/meow": "^5.0.0",
"@types/node": "^12.12.27",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"canvas": "^2.6.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^26.1.2",
"ts-node": "^8.6.2",
"tslib": "^1.10.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"canvas": "^2.6.0"
}
}