-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 5.1 KB
/
Copy pathpackage.json
File metadata and controls
166 lines (166 loc) · 5.1 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "solid-ui",
"version": "3.1.3-9",
"description": "UI library for Solid applications",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"style": "./dist/theme.css",
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.esm.js",
"require": "./dist/components/index.cjs.js"
},
"./components/*": {
"types": "./dist/components/*/index.d.ts",
"import": "./dist/components/*/index.esm.js",
"require": "./dist/components/*/index.cjs.js"
},
"./theme.css": {
"style": "./dist/theme.css",
"types": "./dist/theme.css.d.ts",
"import": "./dist/theme.css",
"require": "./dist/theme.css"
},
"./breakpoints.css": {
"style": "./dist/breakpoints.css",
"types": "./dist/breakpoints.css.d.ts",
"import": "./dist/breakpoints.css",
"require": "./dist/breakpoints.css"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf ./dist ./src/versionInfo.ts ./docs/api .tsbuildinfo",
"build": "npm run clean && npm run typecheck && npm run build-version && npm run build-npm && npm run build-styles && npm run build-cdn && npm run build-cdn-legacy && npm run postbuild-js && npm run build-storybook",
"build-cdn": "vite build --mode cdn",
"build-cdn-legacy": "vite build --mode cdn-legacy",
"build-npm": "vite build",
"build-styles": "vite build --mode styles",
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
"watch": "concurrently -k -n npm,styles \"npm:watch-npm\" \"npm:watch-styles\"",
"watch-npm": "vite build --watch",
"watch-styles": "vite build --mode styles --watch",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",
"test": "npm run typecheck-test && vitest run",
"test-coverage": "vitest run --coverage",
"test-debug": "vitest --inspect-brk --no-file-parallelism",
"doc": "typedoc --out ./docs/api/ ./src/ --excludeInternal",
"prepublishOnly": "npm run build && npm run lint && npm test && npm run doc",
"preversion": "npm run lint && npm run typecheck && npm test",
"postpublish": "git push origin main --follow-tags",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --output-dir ./examples/storybook",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidOS/solid-ui.git"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"contributors": [
"Daniel Friedman <danielf@mit.edu>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidOS/solid-ui/issues"
},
"homepage": "https://github.com/SolidOS/solid-ui",
"dependencies": {
"@awesome.me/webawesome": "^3.9.0",
"@lit/context": "^1.1.6",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"escape-html": "^1.0.3",
"lit": "^3.3.3",
"mime-types": "^3.0.2",
"pane-registry": "3.1.2-2",
"rdflib": "2.4.0",
"solid-logic": "4.0.8-1",
"solid-namespace": "^0.5.4",
"uuid": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.29.7",
"@babel/plugin-transform-class-properties": "^7.29.7",
"@babel/plugin-transform-class-static-block": "^7.29.7",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/plugin-transform-typescript": "^7.29.7",
"@babel/preset-env": "^7.29.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.4",
"@iconify/json": "2.2.481",
"@rolldown/plugin-babel": "^0.2.3",
"@storybook/addon-docs": "10.4.2",
"@storybook/addon-links": "10.4.2",
"@storybook/web-components-vite": "10.4.2",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^13.5.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^24.13.2",
"@typescript-eslint/parser": "^8.59.3",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^10.0.3",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^18.0.1",
"eslint-plugin-promise": "^7.3.0",
"get-random-values": "^5.0.0",
"globals": "^17.6.0",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^28.1.0",
"neostandard": "^0.13.0",
"nock": "^15.0.0",
"patch-package": "^8.0.1",
"path-browserify": "^1.0.1",
"postcss": "^8.5.15",
"solidos-toolkit": "dev",
"storybook": "10.4.2",
"tailwindcss": "4.3.0",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"undici-types": "^7.18.2",
"unplugin-dts": "^1.0.2",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.16",
"vite-plugin-lit-css": "^3.0.0",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"fsevents": "*"
},
"solidosDependencies": [
"rdflib",
"solid-logic",
"pane-registry"
]
}