-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 5.6 KB
/
package.json
File metadata and controls
159 lines (159 loc) · 5.6 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
{
"name": "solid-ui",
"version": "3.1.0",
"description": "UI library for Solid applications",
"main": "dist/solid-ui.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/solid-ui.esm.js",
"require": "./dist/solid-ui.js"
},
"./components/header": {
"types": "./dist/components/header/index.d.ts",
"import": "./dist/components/header/index.esm.js",
"require": "./dist/components/header/index.js"
},
"./components/login-button": {
"types": "./dist/components/loginButton/index.d.ts",
"import": "./dist/components/loginButton/index.esm.js",
"require": "./dist/components/loginButton/index.js"
},
"./components/signup-button": {
"types": "./dist/components/signupButton/index.d.ts",
"import": "./dist/components/signupButton/index.esm.js",
"require": "./dist/components/signupButton/index.js"
},
"./components/footer": {
"types": "./dist/components/footer/index.d.ts",
"import": "./dist/components/footer/index.esm.js",
"require": "./dist/components/footer/index.js"
}
},
"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-dist && npm run build-js && npm run postbuild-js && npm run build-storybook",
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"prebuild-js": "rm -f .tsbuildinfo",
"build-js": "tsc",
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map && node scripts/build-component-dts.mjs",
"build-dist": "webpack --progress",
"build-form-examples": "npm run build-js && npm run build-version && npm run build-dist && cp ./dist/solid-ui.js ./docs/form-examples/",
"lint": "eslint",
"lint-fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"typecheck-test": "tsc --noEmit -p tsconfig.test.json",
"test": "jest --no-coverage",
"test-coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"watch:js": "tsc --watch --preserveWatchOutput",
"watch:component-dts": "node scripts/watch-component-dts.mjs",
"watch:dist": "webpack --watch --mode development",
"watch": "npm run build-version && npm run build-js && npm run postbuild-js && sh -c 'npm run watch:js & npm run watch:component-dts & npm run watch:dist & wait'",
"dev": "npm run build-version && sh -c 'npm run watch:js & npm run watch:component-dts & npm run watch:dist & wait'",
"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"
},
"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": {
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"escape-html": "^1.0.3",
"lit": "^3.3.2",
"mime-types": "^3.0.2",
"pane-registry": "^3.1.0",
"solid-namespace": "^0.5.4",
"uuid": "^13.0.0"
},
"peerDependencies": {
"rdflib": "^2.3.6",
"solid-logic": "^4.0.6"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.28.6",
"@eslint/js": "^9.39.2",
"@mdx-js/react": "^3.1.1",
"@storybook/addon-actions": "8.6.15",
"@storybook/addon-docs": "8.6.15",
"@storybook/addon-essentials": "8.6.15",
"@storybook/addon-links": "8.6.15",
"@storybook/addon-mdx-gfm": "8.6.15",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/html": "8.6.15",
"@storybook/html-webpack5": "8.6.15",
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.1.0",
"@typescript-eslint/parser": "^8.54.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"css-loader": "^6.11.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-promise": "^7.2.1",
"get-random-values": "^4.1.1",
"globals": "^17.2.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^28.1.0",
"neostandard": "^0.12.2",
"nock": "^15.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"storybook": "8.6.15",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.16",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^7.0.2"
},
"optionalDependencies": {
"fsevents": "*"
}
}