-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.21 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.21 KB
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
{
"name": "@epickris/zpl",
"version": "0.2.1",
"description": "Build, tweak and render individual labels.",
"repository": {
"type": "git",
"url": "git://github.com/SmolSoftBoi/node-zpl.git"
},
"bugs": {
"url": "https://github.com/SmolSoftBoi/node-zpl/issues"
},
"engines": {
"node": ">=20"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./commands": {
"types": "./dist/commands.d.ts",
"require": "./dist/commands.js",
"import": "./dist/commands.js",
"default": "./dist/commands.js"
},
"./dist/commands": {
"types": "./dist/commands.d.ts",
"require": "./dist/commands.js",
"import": "./dist/commands.js",
"default": "./dist/commands.js"
},
"./package.json": "./package.json"
},
"files": [
"bin",
"dist",
"README.md",
"CHANGELOG.md"
],
"bin": {
"zpl": "bin/zpl"
},
"scripts": {
"lint": "eslint 'src/**/*.{js,ts,json}'",
"watch": "yarn build && npm link && nodemon",
"build": "yarn clean && tsc",
"clean": "rimraf ./dist",
"release:check": "node ./scripts/release-check.mjs",
"release:prepare": "yarn lint && yarn build && yarn release:check",
"prepublishOnly": "yarn release:prepare",
"postpublish": "yarn clean"
},
"keywords": [
"zpl"
],
"dependencies": {
"commander": "^14.0.2",
"jimp": "^1.6.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/lodash": "^4.14.157",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.0",
"nodemon": "^3.0.1",
"rimraf": "^6.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.5"
}
}