-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 832 Bytes
/
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
{
"name": "@hot-hook/runner",
"description": "Runner for applications that use hot-hook",
"version": "0.1.0",
"main": "build/bin/run.js",
"type": "module",
"files": [
"build"
],
"bin": {
"hot-runner": "build/bin/run.js"
},
"scripts": {
"clean": "del-cli build",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext=.ts",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts",
"test": "c8 pnpm quick:test",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@adonisjs/ace": "^13.3.0",
"execa": "^8.0.1"
},
"author": "Julien Ripouteau <[email protected]>",
"license": "MIT",
"keywords": [
"hot-hook",
"runner",
"hot-reload"
],
"publishConfig": {
"access": "public",
"tag": "latest"
}
}