forked from storacha/w3ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.3 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
{
"name": "w3ui",
"private": true,
"version": "0.0.0",
"description": "Headless, type-safe, UI components for the next generation Web3.Storage APIs.",
"author": "Alan Shaw",
"maintainers": [
"travis",
"yusefnapora",
"olizilla"
],
"license": "Apache-2.0 OR MIT",
"scripts": {
"prepare": "pnpm run build && pnpm run compile",
"build": "rollup --config rollup.config.js && pnpm run typecheck",
"clean": "rm -rf node_modules package-lock.json coverage packages/*/{package-lock.json,build,node_modules}",
"compile": "pnpm run --recursive --if-present compile",
"format": "pnpm --recursive --if-present run lint --fix",
"format:check": "lint",
"lint": "pnpm --recursive --if-present run lint",
"test": "pnpm run --filter './packages/**' --recursive test",
"typecheck": "tsc -b",
"test:examples": "pnpm run --filter './examples/**' test",
"build:examples": "pnpm run --filter './examples/**' --no-bail build || true",
"serve:examples": "serve examples",
"playwright:install": "pnpm --filter './examples/test/playwright' exec playwright install"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^29.4.0",
"@types/jsdom": "^20.0.1",
"@types/react": "^18.0.26",
"@ucanto/client": "^5.1.0",
"@ucanto/server": "^6.1.0",
"@ucanto/transport": "^5.1.1",
"@web-std/file": "^3.0.2",
"@web3-storage/capabilities": "^4.0.0",
"esm": "^3.2.25",
"fake-indexeddb": "^4.0.1",
"hd-scripts": "^4.1.0",
"jsdom": "^21.1.0",
"path": "^0.12.7",
"react": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.0",
"serve": "^14.2.0",
"solid-js": "^1.6.10",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.27.3",
"vitest-environment-w3ui": "workspace:^",
"vue": "^3.2.45"
}
}