-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "font.gl",
"description": "font.gl is a font library and framework developed by Scape Agency.",
"version": "0.0.12",
"config": {
"version_short": "0.0"
},
"keywords": [
"font",
"svg",
"font.gl",
"sass",
"responsive",
"front-end",
"layout-engine",
"framework",
"web"
],
"homepage": "https://www.font.gl/",
"author": "Lars van Vianen",
"contributors": [
"Scape Agency"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stylescape/font.gl.git"
},
"bugs": {
"url": "https://github.com/stylescape/font.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"main": "src/scss/index.scss",
"type": "module",
"module": "dist/js/font.gl.js",
"style": "dist/css/font.gl.css",
"sass": "src/scss/index.scss",
"scripts": {
"format": "npx prettier --write .",
"lint": "eslint 'src/**/*.ts' || true",
"prettify": "prettier --write 'src/**/*.ts'",
"dev": "webpack --mode development --config webpack.config.js",
"build": "webpack --mode production --config webpack.config.js",
"serve": "webpack serve --mode development --config webpack.config.js",
"start": "webpack-dev-server --mode development --config webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@types/webpack": "^5.28.1",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.4",
"prettier": "^3.5.2",
"sass": "^1.85.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"terser": "^5.39.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"files": [
"dist/font/**/*.{eot,otf,ttf,woff,woff2}"
],
"hugo-bin": {
"buildTags": "extended"
},
"jspm": {
"registry": "npm",
"main": "dist/js/type.gl.js",
"directories": {
"lib": "src"
},
"shim": {},
"dependencies": {},
"peerDependencies": {}
}
}