-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "@txkit/themes",
"version": "0.1.0-alpha.5",
"description": "CSS themes for txKit components",
"license": "Apache-2.0",
"author": "Michael Diamond",
"homepage": "https://txkit.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/txkit/mono.git",
"directory": "packages/themes"
},
"bugs": {
"url": "https://github.com/txkit/mono/issues"
},
"keywords": [
"txkit",
"themes",
"css",
"web3",
"ethereum",
"dark-mode",
"light-mode",
"design-tokens",
"css-variables",
"theming",
"ui-kit",
"defi"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19"
},
"type": "module",
"exports": {
".": "./dist/index.css",
"./base": "./dist/base.css",
"./dark": "./dist/dark.css",
"./forced-colors": "./dist/forced-colors.css",
"./variants/soft": "./dist/variants/soft.css",
"./variants/sharp": "./dist/variants/sharp.css",
"./variants/rounded": "./dist/variants/rounded.css"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "mkdir -p dist dist/variants && postcss src/index.css -o dist/index.css && cp src/base.css src/dark.css src/forced-colors.css dist/ && cp src/variants/*.css dist/variants/",
"dev": "mkdir -p dist dist/variants && postcss src/index.css -o dist/index.css && cp src/base.css src/dark.css src/forced-colors.css dist/ && cp src/variants/*.css dist/variants/",
"clean": "rm -rf dist"
},
"devDependencies": {
"tsup": "^8.4.0",
"typescript": "^6.0.3"
},
"sideEffects": [
"*.css"
]
}