-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "@128technology/icons",
"version": "1.5.0",
"description": "The icon font for 128 Technology's 128T router.",
"repository": {
"type": "git",
"url": "git+https://github.com/128technology/128t-icons.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "128 Technology",
"bugs": {
"url": "https://github.com/128technology/128t-icons/issues"
},
"scripts": {
"test": "true",
"prepublishOnly": "npm run build",
"cleanup": "rm -rf fonts && node cleanup.js",
"build:ts": "tsc",
"build:components": "svgr -d ./dist --ext tsx --icon ./raw && node createIndex.js",
"build:font": "icon-font-generator ./raw/*.svg -n t128 -o ./dist/fonts -p ic --csstp ./css.hbs --htmltp ./html.hbs --htmlpath ./dist/fonts/index.html --mono",
"build": "mkdir -p dist/fonts && npm run build:font && npm run build:components && npm run build:ts"
},
"homepage": "https://github.com/128technology/128t-icons#readme",
"sideEffects": false,
"files": [
"dist"
],
"pre-commit": [
"cleanup"
],
"dependencies": {},
"devDependencies": {
"@svgr/cli": "^5.3.0",
"@types/react": "^16.7.17",
"icon-font-generator": "^2.1.8",
"pre-commit": "^1.2.2",
"react": "^16.6.3",
"typescript": "^3.2.2"
}
}