-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.03 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
{
"name": "@tenphi/glaze",
"version": "2.0.0",
"description": "OKHST-based color theme generator with WCAG contrast solving for light, dark, and high-contrast schemes",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"docs"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"playground": "vite playground",
"build:playground": "vite build playground",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenphi/glaze.git"
},
"keywords": [
"color",
"theme",
"okhst",
"okhsl",
"contrast",
"wcag",
"accessibility",
"dark-mode",
"design-tokens",
"color-system"
],
"author": "Andrey Yamanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/tenphi/glaze/issues"
},
"homepage": "https://github.com/tenphi/glaze#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.16",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@11.0.8"
}