-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "rescript-x",
"description": "A ReScript framework for building server-driven websites and applications on Bun and Vite.",
"version": "1.4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/zth/res-x.git"
},
"homepage": "https://github.com/zth/res-x#readme",
"bugs": {
"url": "https://github.com/zth/res-x/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build:resx-client": "node scripts/build-resx-client.mjs",
"res:build": "rescript",
"res:clean": "rescript clean",
"res:dev": "rescript watch",
"test": "bun test ./test/*.test.js"
},
"keywords": [
"rescript"
],
"files": [
"README.md",
"CHANGELOG.md",
"client/**/*",
"rescript.json",
"src/**/*",
"res-x-vite-plugin.mjs"
],
"author": "Gabriel Nordeborn",
"license": "MIT",
"peerDependencies": {
"rescript": ">=12.0.0-0 <13.0.0",
"vite": ">=4.4.11",
"rescript-bun": ">=2.1.0"
},
"devDependencies": {
"rescript": "12.0.0-rc.3",
"rescript-bun": "2.1.0"
},
"dependencies": {
"chokidar": "^4.0.3",
"fast-glob": "^3.3.1"
}
}