-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "unicode-unicorn",
"version": "1.0.0",
"description": "A JavaScript Unicode IDE",
"private": true,
"dependencies": {
"@popperjs/core": "^2.11.8",
"@types/node": "^22.9.0",
"bootstrap": "^5.3.3",
"tsx": "^4.19.2",
"typescript": ">=5.6.3"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"prettier": "^3.3.3",
"vite": "^5.4.11"
},
"scripts": {
"clean": "rm -r dist wasm/pkg wasm/target",
"build": "(cd wasm && wasm-pack build -t web) && tsx data/compile-unicode-data.ts && vite build",
"start": "(cd wasm && wasm-pack build -t web) && tsx data/compile-unicode-data.ts && vite",
"server": "vite preview",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/printfn/unicode-unicorn.git"
},
"author": "printfn",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/printfn/unicode-unicorn/issues"
},
"homepage": "https://github.com/printfn/unicode-unicorn#readme",
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"printWidth": 100,
"overrides": [
{
"files": "**/*.yml",
"options": {
"tabWidth": 2
}
}
]
}
}