-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 825 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 825 Bytes
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
{
"name": "interface-ui-icons",
"version": "1.0.0",
"description": "Interface UI Icons Library",
"private": true,
"type": "module",
"scripts": {
"build:icons": "pnpm -C packages/material-icons build",
"build:example": "pnpm -C example build",
"example": "pnpm -C example dev",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"icon",
"material symbols",
"svg",
"vue",
"interface-ui"
],
"author": "Interface UI",
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "^2.4.6",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/types": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.56.0",
"husky": "^8.0.0"
}
}