-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "@browsersync/bslite",
"version": "0.0.7",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "bslite",
"triples": {
"defaults": false,
"additional": [
"aarch64-apple-darwin",
"x86_64-apple-darwin"
]
}
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.14.8",
"ava": "^5.1.1"
},
"ava": {
"timeout": "3m"
},
"bin": {
"bslite": "./bin.js"
},
"engines": {
"node": ">= 18"
},
"scripts": {
"artifacts": "napi artifacts",
"clean": "rm -rf $TMPDIR*bslite*",
"build": "npm run clean && touch bslite/src/lib.rs && napi build --cargo-name bslite --platform --release",
"build:debug": "npm run clean && napi build --cargo-name bslite --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"pretest": "npm run build",
"universal": "napi universal",
"version": "napi version",
"dd": "echo $TYPE_DEF_TMP_PATH",
"e2e": "npm run build && cd examples/hello-world && npm start"
},
"repository": "git@github.com:BrowserSync/bsrs.git"
}