-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.29 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.29 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
{
"name": "solid-ui",
"version": "3.0.4",
"description": "UI library for Solid applications",
"main": "dist/solid-ui.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/solid-ui.esm.js",
"require": "./dist/solid-ui.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf ./dist ./src/versionInfo.ts ./docs/api",
"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",
"build-js": "tsc",
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map",
"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": "npm run build-version && babel src --out-dir dist --watch --source-maps --extensions '.ts,.js'",
"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",
"mime-types": "^3.0.2",
"pane-registry": "^3.0.1",
"solid-namespace": "^0.5.4",
"uuid": "^13.0.0"
},
"peerDependencies": {
"rdflib": "^2.3.5",
"solid-logic": "^4.0.2"
},
"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": "^27.0.0",
"@types/node": "^25.1.0",
"@typescript-eslint/parser": "^8.54.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.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": "^27.4.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",
"terser-webpack-plugin": "^5.3.16",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"optionalDependencies": {
"fsevents": "*"
}
}