-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "pngquantjs",
"version": "0.9.3",
"description": "native nodejs module for pngquant library",
"author": "Kadir Sevil <kadir.sevil@diodeiot.com>",
"maintainers": [
"Kadir Sevil <kadir.sevil@diodeiot.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/diodeiot/pngquantjs.git"
},
"keywords": [
"imagemin",
"compress",
"image",
"img",
"minify",
"optimize",
"png",
"pngquant",
"libimagequant",
"addon",
"rust",
"native"
],
"files": [
"assets",
"buildjs",
"src",
"test",
"third_party/libimagequant",
"Cargo.toml"
],
"main": "buildjs/index.js",
"scripts": {
"build:addon": "cargo build --release --message-format=json > cargo.log && npx neon dist < cargo.log",
"build": "yarn build:addon && node install/cleanbuild.js && tsc",
"prepack": "yarn build && yarn test",
"test": "node test/index.test.js",
"postinstall": "yarn build:addon"
},
"dependencies": {
"@neon-rs/cli": "^0.1.73"
},
"devDependencies": {
"@types/node": "^20.14.10",
"pngjs": "^7.0.0",
"typescript": "^5.5.3"
}
}