-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.05 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@tinytown/pub",
"version": "0.0.3",
"description": "A tiny pre-processor for tiny websites",
"type": "module",
"contributors": [
"reaper <ahoy@barelyhuman.dev>"
],
"exports": "./lib/publish.mjs",
"bin": {
"pub": "./bin/pub.mjs"
},
"files": [
"lib",
"bin"
],
"scripts": {
"docs:dev": "pnpm --filter=docs dev",
"docs:build": "pnpm --filter=docs build",
"publint": "publint",
"test": "vitest"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "auto",
"experimentalTernaries": true,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"dependencies": {
"@dumbjs/quick-hash": "^0.0.4",
"@polka/url": "^0.5.0",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"coffeescript": "^2.7.0",
"esbuild": "^0.24.0",
"kleur": "^4.1.5",
"marked": "^15.0.2",
"mrmime": "^2.0.0",
"mustache": "^4.2.0",
"postcss": "^8.4.49",
"postcss-calc": "^10.0.2",
"postcss-colormin": "^7.0.2",
"postcss-convert-values": "^7.0.4",
"postcss-discard-comments": "^7.0.3",
"postcss-discard-duplicates": "^7.0.1",
"postcss-discard-empty": "^7.0.0",
"postcss-discard-overridden": "^7.0.0",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-merge-longhand": "^7.0.4",
"postcss-merge-rules": "^7.0.4",
"postcss-minify-font-values": "^7.0.0",
"postcss-minify-params": "^7.0.2",
"postcss-minify-selectors": "^7.0.4",
"postcss-normalize-display-values": "^7.0.0",
"postcss-normalize-positions": "^7.0.0",
"postcss-normalize-repeat-style": "^7.0.0",
"postcss-normalize-string": "^7.0.0",
"postcss-normalize-timing-functions": "^7.0.0",
"postcss-normalize-unicode": "^7.0.2",
"postcss-normalize-url": "^7.0.0",
"postcss-normalize-whitespace": "^7.0.0",
"postcss-ordered-values": "^7.0.1",
"postcss-reduce-initial": "^7.0.2",
"postcss-reduce-transforms": "^7.0.0",
"postcss-scss": "^4.0.9",
"postcss-unique-selectors": "^7.0.3",
"posthtml": "^0.16.6",
"posthtml-base-url": "^3.1.5",
"sade": "^1.8.1",
"sirv": "^3.0.0",
"sucrase": "^3.35.0",
"svgo": "^3.3.2",
"terser": "^5.36.0",
"tiny-glob": "^0.2.9",
"ws": "^8.18.0"
},
"devDependencies": {
"@barelyhuman/prettier-config": "^2.0.2",
"chai": "^5.1.2",
"chai-jest-snapshot": "^2.0.0",
"mocha": "^10.8.2",
"modern-normalize": "^3.0.1",
"prettier": "^3.4.1",
"publint": "^0.2.12",
"should": "^13.2.3",
"svelte": "^5.3.0",
"vitest": "^2.1.6"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"svelte": "^5.3.0"
},
"peerDependenciesMeta": {
"svelte": {
"optional": true
}
},
"pnpm": {
"overrides": {
"lodash@<4.17.11": ">=4.17.11",
"ws@>=6.0.0 <6.2.2": ">=6.2.2",
"lodash@<4.17.21": ">=4.17.21",
"moment@>=2.18.0 <2.29.4": ">=2.29.4",
"moment@<2.29.2": ">=2.29.2",
"lodash@>=3.7.0 <4.17.19": ">=4.17.19",
"qs@>=6.5.0 <6.5.3": ">=6.5.3",
"express@<4.19.2": ">=4.19.2",
"lodash@<4.17.12": ">=4.17.12",
"jsonwebtoken@<9.0.0": ">=9.0.0",
"ajv@<6.12.3": ">=6.12.3",
"jsonwebtoken@<=8.5.1": ">=9.0.0",
"ws@>=6.0.0 <6.2.3": ">=6.2.3",
"body-parser@<1.20.3": ">=1.20.3",
"path-to-regexp@<0.1.10": ">=0.1.10",
"cookie@<0.7.0": ">=0.7.0",
"send@<0.19.0": ">=0.19.0",
"serve-static@<1.16.0": ">=1.16.0",
"express@<4.20.0": ">=4.20.0",
"path-to-regexp@<0.1.12": ">=0.1.12"
}
}
}