This repository was archived by the owner on Sep 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
{
"name": "speere",
"version": "1.0.3",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./grammar": {
"types": "./dist/grammar.d.ts",
"import": "./dist/grammar.mjs",
"require": "./dist/grammar.cjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "npm run build && np"
},
"keywords": [],
"author": "KOU inc.",
"license": "MIT",
"description": "A Framework-agnostic Web Speech Recognition API wrapper.",
"repository": "https://github.com/kou-by/speere",
"bugs": "https://github.com/kou-by/speere/issues",
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/dom-speech-recognition": "^0.0.6",
"@vitest/coverage-v8": "^3.0.9",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"jsdom": "^26.0.0",
"np": "^10.2.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vitest": "^3.0.9"
}
}