-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "@verdigristech/design-tokens",
"version": "0.2.0",
"description": "Verdigris design system tokens — OKLch-first, multi-format output",
"license": "UNLICENSED",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/VerdigrisTech/design.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"main": "build/dist/index.js",
"exports": {
".": "./build/dist/index.js",
"./css/oklch": "./build/dist/css/oklch.css",
"./css/hsl": "./build/dist/css/hsl.css",
"./hex": "./build/dist/hex/colors.json",
"./tailwind": "./build/dist/tailwind/preset.js",
"./tokens/*": "./tokens/*",
"./rules/*": "./rules/*"
},
"files": [
"build/dist/",
"tokens/",
"rules/",
"foundations/",
"AGENTS.md"
],
"scripts": {
"build": "tsx build/config.ts",
"validate": "tsx build/validate.ts",
"clean": "rm -rf build/dist"
},
"devDependencies": {
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}