-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.5 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.5 KB
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
{
"name": "hue.gl",
"description": "hue.gl is a colour palette developed by Scape Agency.",
"version": "0.1.2",
"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"
}
],
"type": "module",
"main": "./dist/js/index.cjs",
"module": "./dist/js/index.mjs",
"types": "./dist/js/index.d.ts",
"sass": "scss/index.scss",
"style": "dist/css/hue.gl.css",
"scripts": {
"build": "npx kist --config ./kist.yml && npm run build:ts",
"build:ts": "tsup",
"watch": "npx kist --config ./kist.yml --live",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "npx prettier --write .",
"lint": "eslint 'src/**/*.ts' || true"
},
"dependencies": {
"@getkist/action-nunjucks": "^2.0.9",
"@getkist/action-sass": "^1.0.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@types/node": "^25.2.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"kist": "^0.1.60",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"files": [
"src/**",
"dist/**"
],
"exports": {
".": {
"sass": "./src/scss/index.scss",
"types": "./dist/js/index.d.ts",
"import": "./dist/js/index.mjs",
"require": "./dist/js/index.cjs"
},
"./scss": "./dist/scss/index.scss",
"./css/hue.gl.css": "./dist/css/hue.gl.css",
"./css/hue.gl.min.css": "./dist/css/hue.gl.min.css"
}
}