-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
137 lines (137 loc) · 4.56 KB
/
package.json
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
{
"name": "solid-ui",
"version": "2.5.1",
"description": "UI library for writing Solid read-write-web applications",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types && npm run build-dev && npm run build-dist && npm run build-storybook",
"build-lib": "babel src -d lib --source-maps --extensions \".ts,.js\"",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint \"src/versionInfo.ts\" --fix",
"build-dev": "webpack --progress",
"build-dist": "webpack --progress --mode=production",
"build-form-examples": "npm run build-lib && npm run build-dev && cp ./dist/*.js ./Documentation/form-examples/",
"watch": "npm run build-version && babel src --out-dir lib --watch --source-maps --extensions \".ts,.js\"",
"clean": "rm -rf lib dist ./Documentation/form-examples/main.js",
"coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s",
"lint": "eslint \"src/**/*.js\" \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-fix": "eslint \"src/**/*.js\" \"src/**/*.ts\" \"test/**/*.ts\" --fix",
"jest": "jest",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test": "npm run build-version && npm run lint && npm run jest",
"doc": "typedoc --out ./Documentation/api/ ./src/ --excludeInternal",
"prepublishOnly": "npm test && npm run build && npm run doc",
"postpublish": "git push origin main --follow-tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --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 <[email protected]>",
"contributors": [
"Daniel Friedman <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solidos/solid-ui/issues"
},
"homepage": "https://github.com/solidos/solid-ui",
"dependencies": {
"@noble/curves": "^1.8.1",
"acorn": "^7.4.1",
"escape-html": "^1.0.3",
"i": "^0.3.7",
"mime-types": "^2.1.35",
"npm": "^8.19.4",
"pane-registry": "^2.4.27",
"solid-logic": "^3.0.8",
"solid-namespace": "^0.5.4",
"uuid": "^11.0.5"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.7",
"@mdx-js/react": "^2.3.0",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-docs": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/html": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@testing-library/dom": "^8.20.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/jsdom": "^16.2.15",
"@types/node": "^18.19.26",
"@types/react": "^17.0.83",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^8.4.1",
"crypto": "^1.0.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"get-random-values": "^2.1.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^7.0.4",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jsdom": "^16.7.0",
"lint-staged": "^12.5.0",
"nock": "^13.5.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"ts-jest": "^27.1.5",
"typedoc": "^0.25.12",
"typescript": "^4.9.5",
"webpack": "^5.97.1",
"webpack-cli": "^4.10.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.(js|ts)": [
"eslint"
]
}
}