-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "tpl-parser",
"version": "1.0.2",
"description": "A TypeScript library for parsing Photoshop TPL (Tool Preset) files and converting the data into a structured JSON format.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"tpl-parser": "./dist/cli.js"
},
"scripts": {
"build": "tsup --config tsup.config.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/DavyJonesCodes/TPLParserJS.git"
},
"keywords": [
"Photoshop",
"TPL",
"Tool Preset",
"JSON",
"parser",
"TypeScript",
"library",
"graphics"
],
"author": {
"name": "Dev Jones",
"email": "[email protected]",
"url": "https://github.com/DavyJonesCodes"
},
"license": "CC-BY-NC-4.0",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^22.5.0",
"@types/python-struct": "^1.0.4",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"commander": "^12.1.0",
"python-struct": "^1.1.3"
}
}