-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "atom-icon-generator",
"version": "1.0.24",
"description": "",
"main": "./dist/main",
"bin": {
"example": "./bin/example",
"preview": "./bin/preview"
},
"scripts": {
"postinstall": "npm run compile && npm run convert",
"clean": "rimraf tmp examples dist",
"compile": "tsc",
"compile:w": "npm run compile -- -w",
"example": "ts-node ./bin/examples --all",
"preview": "ts-node ./bin/preview all -o file",
"kotlin": "ts-node ./bin/kotlin all -o file",
"convert": "npm run convert_icons && npm run convert_folders",
"convert_icons": "npx xml-js icon_associations.xml --out icon_associations.json --spaces 2 --compact --no-comment --attributes-key value",
"convert_folders": "npx xml-js folder_associations.xml --out folder_associations.json --spaces 2 --compact --no-comment --attributes-key value"
},
"author": "Elior Boukhobza",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.2",
"@types/yargs": "17.0.32",
"biome": "^0.3.3",
"puppeteer": "22.11.0",
"rimraf": "5.0.7",
"ts-node-dev": "2.0.0",
"typescript": "5.4.5",
"yargs": "17.7.2",
"xml-js": "^1.6.11"
},
"dependencies": {
"fs-extra": "^11.2.0"
}
}