-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.6 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@sign-mt/browsermt",
"version": "0.2.3",
"description": "browsermt inference code",
"keywords": [
"browsermt",
"bergamot"
],
"homepage": "https://github.com/sign/browsermt",
"bugs": "https://github.com/sign/browsermt/issues",
"author": "sign.mt ltd",
"repository": "sign/browsermt",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/src/index.d.ts",
"engines": {
"node": "^18.7.0 || >= 16",
"npm": "^8.16.0 || >= 8"
},
"volta": {
"node": "18.7.0",
"npm": "8.16.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "node -r ./esbuild-hook ./scripts/setup",
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "node -r ./esbuild-hook ./scripts/build",
"clean": "node -r ./esbuild-hook ./scripts/clean",
"type:dts": "tsc --emitDeclarationOnly",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:setup": "node -r ./esbuild-hook ./scripts/testSetup",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.6.5",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"c8": "^7.12.0",
"cspell": "^6.6.0",
"esbuild": "^0.14.54",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prompts": "^2.4.2",
"semantic-release": "^19.0.3",
"slugify": "^1.6.5",
"source-map-support": "^0.5.21",
"typescript": "^4.7.4",
"vitest": "^0.21.1"
},
"overrides": {
"semver-regex": "3.1.4"
},
"dependencies": {
"browser-or-node": "^2.0.0",
"comlink": "^4.3.1",
"web-worker": "^1.2.0"
}
}