-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.24 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.24 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
{
"name": "solid-ui",
"version": "2.6.1",
"description": "UI library for Solid applications",
"main": "dist/solid-ui.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/solid-ui.esm.js",
"require": "./dist/solid-ui.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf ./dist ./src/versionInfo.ts ./docs/api",
"build": "npm run clean && 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": "^1.9.6",
"@noble/hashes": "^1.8.0",
"escape-html": "^1.0.3",
"mime-types": "^3.0.1",
"pane-registry": "^2.5.1-928f05a",
"rdflib": "^2.3.0",
"solid-logic": "^3.1.1-aa7c1ee",
"solid-namespace": "^0.5.4",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.3",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.28.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@mdx-js/react": "^3.1.0",
"@storybook/addon-actions": "7.6.20",
"@storybook/addon-docs": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/addon-links": "7.6.20",
"@storybook/html": "7.6.20",
"@storybook/html-webpack5": "^7.6.20",
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.2.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"babel-jest": "^30.1.2",
"babel-loader": "^10.0.0",
"eslint": "^9.32.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-promise": "^7.2.1",
"get-random-values": "^4.0.0",
"globals": "^16.3.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jsdom": "^26.1.0",
"neostandard": "^0.12.2",
"nock": "^13.5.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"storybook": "^7.6.20",
"terser-webpack-plugin": "^5.3.14",
"typedoc": "^0.28.9",
"typescript": "^5.9.2",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1"
},
"optionalDependencies": {
"fsevents": "*"
}
}