-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "phonaria",
"version": "0.0.1",
"author": "Miguel Rodriguez",
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"semantic-release": "^25.0.3",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"description": "Toolkit of English pronunciation resources for ESL learners, including G2P transcription, IPA reference, and contrast explorers",
"keywords": [
"english pronunciation",
"ipa",
"esl",
"grapheme to phoneme",
"minimal pairs",
"spelling patterns"
],
"license": "MIT",
"packageManager": "bun@1.3.2",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"dev": "turbo run dev --filter=@phonaria/lab",
"check-types": "turbo run check-types",
"test": "turbo run test",
"e2e": "turbo run e2e",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run"
},
"workspaces": [
"packages/*",
"apps/*"
]
}