-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "vsc-icon-maker",
"version": "2.0.0",
"description": "useful functions to improve create vscode icon themes",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "biome check --fix",
"lint-staged": "lint-staged --allow-empty",
"prepare": "husky",
"prepublish": "pnpm build"
},
"repository": {
"url": "https://github.com/rafaScalet/VSC-Icon-Maker",
"type": "git"
},
"bugs": {
"url": "https://github.com/rafaScalet/VSC-Icon-Maker/issues",
"email": "rafaelscalet2018@gmail.com"
},
"lint-staged": {
"*.ts": ["pnpm lint"],
"*.json": ["pnpm lint"]
},
"keywords": [
"utils",
"vscode",
"vscode-utils",
"vscode-icons",
"icons",
"icon-maker"
],
"author": "rafascalet",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.7",
"@types/pluralize": "^0.0.33",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"pluralize": "^8.0.0"
}
}