-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.31 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
81
82
83
{
"name": "alfred-bootstrap-icons-workflow",
"private": true,
"engines": {
"node": "14.x"
},
"description": "You can incrementally search for Bootstrap Icons and paste it to front most app.",
"scripts": {
"clean": "rimraf ./dist && mkdirp ./dist && cpx './assets/{icons/*,icon.png,info.plist}' ./dist",
"compile": "webpack",
"package": "pkg --targets macos --output ./dist/bootstrap-icons-workflow ./dist/index.js",
"compress": "cd ./dist && rimraf ./index.js && zip -r -q Bootstrap-Icons.alfredworkflow ./",
"build": "npm run clean && npm run compile && npm run package && npm run compress",
"build:open": "npm run build && npm run open",
"open": "open ./dist/Bootstrap-Icons.alfredworkflow",
"exec": "npm run clean && npm run compile && node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cmd:find": "./dist/bootstrap-icons-workflow --find bootstrap",
"test:cmd:put:svg": "./dist/bootstrap-icons-workflow --put-svg bootstrap",
"test:cmd:put:name": "./dist/bootstrap-icons-workflow --put-name bootstrap",
"test:cmd:put:url": "./dist/bootstrap-icons-workflow --put-url bootstrap",
"test:cmd:put": "npm run test:cmd:put:svg && npm run test:cmd:put:name && npm run test:cmd:put:url",
"test:cmd": "npm run test:cmd:find && npm run test:cmd:put",
"fmt": "prettier --write .",
"lint": "eslint . --ext 'ts,js'",
"lint:fix": "eslint . --fix --ext 'ts,js'",
"tsc": "tsc --noEmit",
"organize-imports": "organize-imports-cli ./tsconfig.json",
"check": "npm run organize-imports && npm run lint:fix && npm run fmt && npm run tsc",
"utils:json": "ts-node ./utils/converters/icons_to_json.ts",
"utils:svg2png": "rimraf ./assets/icons && mkdirp ./assets/icons && ts-node ./utils/converters/svg_to_png.ts",
"utils:composite": "ts-node ./utils/converters/composite.ts",
"utils:icons": "npm run utils:svg2png && npm run utils:composite",
"release:json": "npm run utils:json",
"release:icons": "npm run utils:svg2png && npm run utils:composite",
"release:build": "npm run build:open"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/ruedap/alfred-bootstrap-icons-workflow.git"
},
"author": "ruedap",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/ruedap/alfred-bootstrap-icons-workflow/issues"
},
"homepage": "/~https://github.com/ruedap/alfred-bootstrap-icons-workflow#readme",
"devDependencies": {
"@types/imagemin": "7.0.1",
"@types/imagemin-pngquant": "8.0.0",
"@types/jest": "27.0.2",
"@types/node": "14.17.34",
"@types/sharp": "0.29.4",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"cpx": "1.5.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"fast-glob": "3.2.7",
"front-matter": "4.0.2",
"imagemin": "7.0.1",
"imagemin-pngquant": "9.0.2",
"jest": "27.2.5",
"mkdirp": "1.0.4",
"organize-imports-cli": "0.8.0",
"pkg": "5.3.3",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"sharp": "0.29.3",
"svgexport": "0.4.2",
"ts-jest": "27.0.7",
"ts-loader": "9.2.6",
"ts-node": "10.2.1",
"typescript": "4.4.4",
"webpack": "5.52.1",
"webpack-cli": "4.8.0"
},
"dependencies": {
"fuse.js": "6.4.6"
}
}