-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.92 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
{
"name": "glyphr-studio-2",
"author": "Matt LaGrandeur",
"version": "2.1",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/glyphr-studio/Glyphr-Studio-2#readme",
"description": "Glyphr Studio v2 is a web-based font editor, optimized for typeface design beginners or hobbyists.",
"type": "module",
"scripts": {
"dev": "run-func scripts.js dev && vite serve ./src/",
"build": "run-func scripts.js build && vite build ./src/ --emptyOutDir --base=/app/",
"stage": "run-func scripts.js stage && vite build ./src/ --emptyOutDir --base=/staged/",
"test": "vitest watch",
"coverage": "vitest watch --silent=true --coverage",
"lint": "eslint src",
"fix": "eslint src --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-links": "^8.1.11",
"@storybook/blocks": "^8.3.5",
"@storybook/test": "^8.1.11",
"@storybook/web-components": "^8.1.11",
"@storybook/web-components-vite": "^8.1.11",
"@types/jest": "^29.5.12",
"@vitest/browser": "^1.2.2",
"buffer": "^6.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.0.0",
"lit": "^3.1.4",
"paper": "^0.12.17",
"prettier": "^2.7.1",
"run-func": "^3.0.0",
"storybook": "^8.1.11",
"vi-canvas-mock": "^1.0.0",
"vite": ">=5.4.6",
"vitest": "^1.6.0"
},
"bugs": {
"url": "https://github.com/glyphr-studio/Glyphr-Studio-2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glyphr-studio/Glyphr-Studio-2.git"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"singleQuote": true,
"useTabs": true,
"arrowParens": "always"
},
"dependencies": {
"eslint": "^8.33.0"
}
}