-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.58 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.58 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@quietui/quiet",
"description": "A UI library for the Web with a focus on accessibility, longevity, performance, and simplicity.",
"version": "1.1.1",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Cory LaViska",
"url": "https://abeautifulsite.net/"
},
"homepage": "https://github.com/quietui/quiet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/quietui/quiet.git"
},
"bugs": {
"url": "https://github.com/quietui/quiet/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/quietui"
},
"keywords": [
"components",
"custom elements",
"design systems",
"ui",
"web components"
],
"type": "module",
"types": "dist/quiet.d.ts",
"exports": {
".": {
"types": "./dist/quiet.d.ts",
"import": "./dist/quiet.js"
},
"./jsx": {
"types": "./dist/custom-elements-jsx.d.ts"
},
"./solid": {
"types": "./dist/solid-integration.d.ts"
},
"./quiet.js": "./dist/quiet.js",
"./quiet.loader.js": "./dist/quiet.loader.js",
"./components/*": "./dist/components/*",
"./events/*": "./dist/events/*",
"./themes/*": "./dist/themes/*",
"./translations/*": "./dist/translations/*",
"./custom-elements.json": "./dist/custom-elements.json"
},
"files": [
"dist"
],
"scripts": {
"start": "node scripts/build.js --develop --browser",
"build": "node scripts/build.js",
"build:browser": "node scripts/build.js --browser",
"build:vercel": "npm run build:browser && cp -r dist _site/dist",
"test": "wtr --group default",
"test:component": "wtr -- --watch --group",
"test:watch": "wtr --watch --group default",
"create": "plop --plopfile src/plop/plopfile.js",
"prepare": "npx playwright install",
"prettier": "prettier --check --log-level=warn .",
"prettier:fix": "prettier --write --log-level=warn .",
"spellcheck": "cspell \"**/*.{js,ts,json,html,css,md}\" --no-progress",
"check-updates": "npx npm-check-updates --interactive --format group",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@ctrl/tinycolor": "4.1.0",
"@floating-ui/dom": "^1.7.2",
"@quietui/scurry": "^5.0.1",
"@quietui/squeak": "^1.1.0",
"lit": "^3.3.1",
"nanoid": "^5.1.5",
"qr-creator": "^1.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/testing": "^4.0.0",
"@tabler/icons": "^3.35.0",
"@types/mocha": "^10.0.10",
"@wc-toolkit/jsx-types": "^1.3.0",
"@web/dev-server-esbuild": "^1.0.4",
"@web/test-runner": "^0.20.2",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.1",
"browser-sync": "^3.0.4",
"chalk": "^5.4.1",
"comment-parser": "^1.4.1",
"cspell": "^9.1.5",
"custom-element-solidjs-integration": "^1.9.0",
"esbuild": "^0.25.6",
"get-port": "^7.1.0",
"globby": "^14.1.0",
"lunr": "^2.3.9",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-container": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-kbd": "^3.0.0",
"markdown-it-mark": "^4.0.0",
"node-html-parser": "^7.0.1",
"npm-check-updates": "^18.0.1",
"ora": "^8.2.0",
"plop": "^4.0.1",
"prettier": "^3.6.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prismjs": "^1.30.0",
"recursive-copy": "^2.0.14",
"slugify": "^1.6.6",
"typescript": "^5.8.3",
"uuid": "^11.1.0"
}
}