-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.2 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
{
"name": "hue.gl",
"description": "hue.gl is a colour palette developed by Scape Agency.",
"version": "0.0.26",
"config": {
"version_short": "0.0"
},
"keywords": [
"hue.gl",
"stylescape",
"niji",
"color",
"colour",
"colour system",
"colour framework",
"colour library",
"framework"
],
"homepage": "https://www.hue.gl/",
"author": "Lars van Vianen",
"contributors": [
"Scape Agency"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stylescape/hue.gl.git"
},
"bugs": {
"url": "https://github.com/stylescape/hue.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/stylescape"
}
],
"main": "src/ts/index.ts",
"type": "module",
"module": "dist/js/hue.gl.js",
"sass": "scss/index.scss",
"style": "dist/css/hue.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"
},
"dependencies": {
"colorjs.io": "^0.5.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.1.0",
"@types/webpack": "^5.28.5",
"ase-utils": "^0.1.1",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"colorjs.io": "^0.5.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"d3": "^7.8.5",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"pack.gl": "^0.1.2",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.0",
"prettier": "^3.1.1",
"sass": "^1.69.7",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"files": [
"src/**",
"dist/**"
],
"exports": {
".": {
"sass": "./scss/index.scss",
"import": "./js/index.js",
"require": "./js/index.js"
}
}
}