-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpackage.json
115 lines (115 loc) · 2.69 KB
/
package.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@thi.ng/meta-css",
"version": "0.18.0",
"description": "Data-driven CSS framework codegen, transpiler & bundler",
"type": "module",
"module": "./index.js",
"typings": "./index.d.ts",
"bin": {
"metacss": "bin/metacss"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://thi.ng/meta-css",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
},
{
"type": "liberapay",
"url": "https://liberapay.com/thi.ng"
}
],
"author": "Karsten Schmidt (https://thi.ng)",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && bun build --outfile=index.js --target bun --minify --bundle src/index.ts",
"build:decl": "tsc --declaration --emitDeclarationOnly",
"build:esbuild": "esbuild --format=esm --platform=node --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
"build:specs": "bin/metacss generate --prec 3 -o export/framework.json specs/*.json",
"clean": "bun ../../tools/src/clean-package.ts",
"doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
"doc:readme": "yarn doc:specs && bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
"doc:specs": "yarn build:specs && bin/metacss doc --level 2 --title NONE -o export/framework.md export/framework.json",
"pub": "yarn npm publish --access public",
"test": "bun test",
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
},
"dependencies": {
"@thi.ng/api": "^8.11.19",
"@thi.ng/args": "^2.3.58",
"@thi.ng/arrays": "^2.10.14",
"@thi.ng/checks": "^3.6.22",
"@thi.ng/compare": "^2.4.11",
"@thi.ng/errors": "^2.5.25",
"@thi.ng/file-io": "^2.1.26",
"@thi.ng/hiccup-css": "^2.7.37",
"@thi.ng/logger": "^3.1.0",
"@thi.ng/memoize": "^4.0.9",
"@thi.ng/rstream": "^9.2.9",
"@thi.ng/strings": "^3.9.4",
"@thi.ng/text-format": "^2.2.24",
"@thi.ng/transducers": "^9.2.17"
},
"devDependencies": {
"esbuild": "^0.25.0",
"typedoc": "^0.27.7",
"typescript": "^5.7.3"
},
"keywords": [
"browser",
"bun",
"bundler",
"cli",
"codegen",
"compiler",
"component",
"css",
"export",
"fileformat",
"generative",
"generator",
"json",
"no-browser",
"tool",
"transpiler",
"typescript",
"ui"
],
"publishConfig": {
"access": "public"
},
"browser": {
"process": false,
"setTimeout": false
},
"engines": {
"node": ">=18"
},
"files": [
"./*.js",
"./*.d.ts",
"bin",
"specs"
],
"exports": {
".": {
"default": "./index.js"
}
},
"thi.ng": {
"related": [
"hiccup-css"
],
"status": "alpha",
"year": 2023
}
}