-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "create-rescript-app",
"version": "1.9.0-beta.1",
"description": "Quickly create new ReScript apps from project templates.",
"main": "out/create-rescript-app.mjs",
"scripts": {
"start": "node src/Main.res.mjs",
"prepack": "rescript && rollup -c",
"format": "rescript format",
"dev": "rescript -w"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/create-rescript-app.git"
},
"bugs": {
"url": "https://github.com/rescript-lang/create-rescript-app/issues"
},
"homepage": "https://github.com/rescript-lang/create-rescript-app#readme",
"keywords": [
"rescript",
"bootstrap rescript",
"rescript app",
"rescript start"
],
"files": [
"templates",
"out/create-rescript-app.mjs"
],
"bin": {
"create-rescript-app": "out/create-rescript-app.mjs"
},
"devDependencies": {
"@clack/prompts": "^0.8.2",
"@rescript/core": "^1.3.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"compare-versions": "^6.1.0",
"rescript": "^11.1.0",
"rollup": "^4.14.3"
}
}