-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "material-file-icons",
"version": "2.4.0",
"description": "Beautiful material style file type icons in a simple react component.",
"module": "dist/index.es.js",
"main": "dist/index.js",
"browser": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"file",
"icons",
"material"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"preview": "node scripts/preview-render.js",
"benchmark": "node scripts/benchmark.js",
"watch": "rollup -cw",
"lint": "eslint \"lib/**/*.{ts,js}\"",
"prepublishOnly": "npm run build"
},
"author": "Simon Nilsson <simon@nilsson.ml>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simonnilsson/material-file-icons.git"
},
"devDependencies": {
"@octokit/core": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"adm-zip": "^0.5.9",
"eslint": "^8.24.0",
"fs-extra": "^10.1.0",
"material-icon-theme": "github:PKief/vscode-material-icon-theme",
"puppeteer": "^18.0.5",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"svgo": "^2.8.0",
"typescript": "^4.8.4"
}
}