-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
{
"name": "hypersync-query-builder-component",
"version": "0.2.1",
"description": "React component for building HyperSync blockchain queries with an intuitive UI",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./styles": "./dist/styles.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"react",
"blockchain",
"ethereum",
"query-builder",
"hypersync",
"web3",
"rescript"
],
"author": "Envio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/envio-corp/hypersync-query-builder-component"
},
"homepage": "https://github.com/envio-corp/hypersync-query-builder-component#readme",
"scripts": {
"res:build": "rescript",
"res:clean": "rescript clean",
"res:dev": "rescript watch",
"vite:dev": "vite",
"dev": "concurrently -k \"npm:res:dev\" \"npm:vite:dev\"",
"build:package": "npm run res:build && vite build --config vite.config.lib.js",
"build:site": "npm run res:build && vite build",
"build:dev": "vite build",
"preview": "vite preview",
"test": "cp rescript.json rescript.json.bak && cp rescript.test.json rescript.json && rescript build --dev && retest tests/**/*.res.mjs; RESULT=$?; cp rescript.json.bak rescript.json && rm rescript.json.bak; exit $RESULT",
"update-chains": "node scripts/update-chains.mjs",
"prepublishOnly": "npm run build:package"
},
"dependencies": {
"@rescript/react": "^0.13.1",
"@rescript/runtime": "^12.2.0",
"pako": "^2.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rescript/linux-x64": "12.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rescript": "^12.2.0",
"rescript-test": "8.0.0",
"tailwindcss": "^4.1.18",
"vite": "^6.4.1"
}
}