-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "icon.gl",
"description": "icon.gl is a icon library and framework developed by Scape Agency.",
"version": "0.0.20",
"config": {
"version_short": "0.0"
},
"keywords": [
"icon.gl",
"stylescape",
"icon",
"icons",
"icon-library",
"font",
"sprite",
"svg",
"sass",
"scss",
"woff",
"woff2",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "https://www.icon.gl/",
"author": "Lars van Vianen",
"contributors": [
"Scape Agency"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/scape-agency/icon.gl.git"
},
"bugs": {
"url": "https://github.com/scape-agency/icon.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"main": "src/scss/index.scss",
"type": "module",
"module": "dist/js/icon.gl.js",
"style": "dist/css/icon.gl.css",
"sass": "src/scss/index.scss",
"scripts": {
"build": "npm run build-compile && npm run build-process",
"build-compile": "tsc -p bin/tsconfig.json",
"build-process": "node bin/js/index.js",
"format": "npx prettier --write .",
"lint": "eslint 'src/**/*.ts' || true",
"prettify": "prettier --write 'src/**/*.ts'",
"icons-font-min": "cleancss -O1 --format breakWith=lf --with-rebase --output font/bootstrap-icons.min.css font/bootstrap-icons.css",
"icons-zip": "cross-env-shell \"rm -rf bootstrap-icons-$npm_package_version bootstrap-icons-$npm_package_version.zip && cp -r icons/ bootstrap-icons-$npm_package_version && cp bootstrap-icons.svg bootstrap-icons-$npm_package_version && cp -r font/ bootstrap-icons-$npm_package_version && zip -qr9 bootstrap-icons-$npm_package_version.zip bootstrap-icons-$npm_package_version && rm -rf bootstrap-icons-$npm_package_version\""
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^22.0.2",
"pack.gl": "^0.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"files": [
"src/**",
"dist/**"
]
}