forked from stylescape/unit.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.47 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
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "unit.gl",
"description": "Layout Engine.",
"version": "0.0.35",
"config": {
"version_short": "0.0"
},
"keywords": [
"unit.gl",
"unit",
"kyu",
"q",
"stylescape",
"sass",
"typography",
"fluid type",
"responsive",
"front-end",
"layout-engine",
"framework",
"web"
],
"homepage": "https://www.unit.gl/",
"author": "Lars van Vianen <[email protected]> (https://vianen.com)",
"contributors": [
"Scape Agency <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/stylescape/unit.gl.git"
},
"bugs": {
"url": "https://github.com/stylescape/unit.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"type": "module",
"main": "src/ts/index.ts",
"sass": "src/scss/index.scss",
"module": "dist/js/unit.gl.js",
"style": "dist/css/unit.gl.css",
"scripts": {
"format": "npx prettier --write .",
"lint": "eslint 'src/**/*.ts' || true",
"prettify": "prettier --write 'src/**/*.ts'",
"build": "npm run build-compile && npm run build-process",
"build-compile": "tsc -p bin/tsconfig.json",
"build-process": "node bin/js/index.js",
"webpack-build": "npm run webpack-prod",
"webpack-dev": "webpack --mode development --config webpack.config.js",
"webpack-prod": "webpack --mode production --config webpack.config.js",
"webpack-serve": "webpack serve --mode development --config webpack.config.js",
"webpack-start": "webpack-dev-server --mode development --config webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.0.2",
"@types/webpack": "^5.28.1",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.1.3",
"block.gl": "^0.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^5.0.0",
"deep.gl": "^0.0.1",
"del": "^7.1.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-prettier": "^5.0.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"grid.gl": "^0.0.1",
"html-webpack-plugin": "^5.5.3",
"hue.gl": "^0.0.11",
"icon.gl": "^0.0.20",
"lodash": "^4.17.21",
"loop.gl": "^0.0.1",
"mini-css-extract-plugin": "^2.7.6",
"pack.gl": "^0.0.40",
"page.gl": "^0.0.3",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.0",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"terser": "^5.26.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"files": [
"src/**",
"dist/**"
]
}