-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.5 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": "@browsersync/bslive",
"version": "0.2.2",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"bslive": "./bin.js"
},
"files": [
"index.js",
"index.d.ts",
"bin.js"
],
"devDependencies": {
"@napi-rs/cli": "^2.18.3",
"@playwright/test": "^1.46.1",
"ava": "^6.0.1",
"typescript": "^5.6.3",
"zod": "^3.23.8",
"esbuild": "^0.24.0",
"@types/node": "20.17.6",
"prettier": "^3.3.3"
},
"prettier": {
"tabWidth": 4
},
"workspaces": [
"ui",
"inject",
"generated",
"./examples/openai",
"./examples/react-router"
],
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --cargo-name bslive --platform --release",
"build:debug": "napi build --cargo-name bslive --platform",
"build:client": "npm run build:client --workspaces --if-present",
"build:example": "npm run build:example --workspaces --if-present",
"prepublishOnly": "napi prepublish -t npm",
"test": "npm run tsc",
"posttest": "npm run test --workspaces --if-present",
"test:build": "ava",
"universal": "napi universal",
"version": "napi version",
"schema": "npm run schema --workspace=generated",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"fmt": "prettier tests inject ui --write"
},
"napi": {
"name": "bslive",
"triples": {
"additional": [
"aarch64-apple-darwin"
]
}
},
"license": "MIT",
"ava": {
"timeout": "3m"
},
"engines": {
"node": "22"
}
}