-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.26 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
92
93
94
95
96
{
"name": "@coloristic.org/core",
"version": "0.1.2",
"description": "Generate accessibility-aware semantic color palettes and production-ready design tokens.",
"keywords": [
"accessibility",
"color",
"contrast",
"design-tokens",
"oklch",
"palette",
"typescript",
"wcag"
],
"author": {
"name": "Yasir Dora",
"url": "https://ysr.design"
},
"license": "MIT",
"homepage": "https://coloristic.org",
"bugs": {
"url": "https://github.com/Yasirdora/coloristic-core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yasirdora/coloristic-core.git"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"SECURITY.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"docs",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents": false
},
"scripts": {
"build": "tsup",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run test:coverage && npm run package:smoke",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --error-on-warnings .",
"package:smoke": "node scripts/smoke-package.mjs",
"prepack": "npm run build",
"release:verify": "node scripts/verify-release.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"culori": "4.0.2"
},
"overrides": {
"esbuild": "0.28.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/culori": "^4.0.1",
"@types/node": "^20.19.0",
"@vitest/coverage-v8": "^4.1.10",
"tsup": "^8.5.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}