forked from sutton-signwriting/signmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "@sutton-signwriting/signmaker",
"private": true,
"version": "2.0.0",
"type": "module",
"description": "Create and edit signs using Formal SignWriting in ASCII (FSW) or SignWriting in Unicode (SWU)",
"license": "MIT",
"author": {
"name": "Steve Slevinski",
"email": "slevinski@signwriting.org",
"url": "https://steve.signwriting.org"
},
"homepage": "https://sutton-signwriting.github.io/signmaker/",
"repository": {
"type": "git",
"url": "git+https://github.com/sutton-signwriting/signmaker.git"
},
"bugs": "https://github.com/sutton-signwriting/signmaker/issues",
"keywords": [
"SignWriting",
"editor",
"sign language",
"signmaker",
"fsw",
"swu"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:pages": "npm run build -- --base=/signmaker/",
"build:package": "npm run build -- --base=./",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "playwright test"
},
"dependencies": {
"@sign-mt/i18n": "github:sign/i18n",
"@sutton-signwriting/core": "^2.0.1",
"@sutton-signwriting/font-ttf": "^1.6.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.16"
}
}