forked from shockpkg/icon-encoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.42 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
{
"name": "@shockpkg/icon-encoder",
"description": "Package for encoding different icon files",
"version": "3.1.1",
"keywords": [
"shockpkg",
"icon",
"icons",
"ico",
"icns",
"windows",
"mac",
"macos"
],
"main": "cjs/index",
"exports": {
".": [
{
"import": "./esm/index.mjs",
"require": "./cjs/index.js",
"default": "./cjs/index.js"
},
"./cjs/index.js"
]
},
"types": "dts/index.d.ts",
"module": "esm/index.mjs",
"sideEffects": false,
"bin": {
"shockpkg-icon-encoder": "./bin/icon-encoder.js"
},
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"clean": "rimraf *.log* dts esm cjs spec/encodes",
"lint": "eslint .",
"format": "prettier -w .",
"formatted": "prettier -c .",
"build:dts": "tsc",
"build:esm": "babel --env-name esm -x .ts -s true -d esm --out-file-extension .mjs src",
"build:cjs": "babel --env-name cjs -x .ts -s true -d cjs --out-file-extension .js src",
"build": "npm run build:dts && npm run build:esm && npm run build:cjs",
"test:esm": "node -r source-map-support/register --test esm",
"test:cjs": "node -r source-map-support/register --test cjs",
"test": "npm run test:esm && npm run test:cjs",
"all:esm": "npm run clean && npm run build:esm && npm run test:esm && npm run lint && npm run formatted",
"all:cjs": "npm run clean && npm run build:cjs && npm run test:cjs && npm run lint && npm run formatted",
"all": "npm run clean && npm run build && npm run test && npm run lint && npm run formatted",
"prepack": "npm run clean && npm run build"
},
"repository": "https://github.com/shockpkg/icon-encoder.git",
"bugs": "https://github.com/shockpkg/icon-encoder/issues",
"author": "JrMasterModelBuilder",
"copyright": "Copyright (c) 2019-2023 JrMasterModelBuilder",
"license": "MPL-2.0",
"dependencies": {
"pngjs": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/node": "^20.8.7",
"@types/pngjs": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-plugin-esm-resolver": "^2.3.2",
"babel-plugin-search-and-replace": "^1.1.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"typescript": "^5.2.2"
}
}