-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "graphite-website",
"description": "Graphite's website. This npm package is for dev tooling only, such as eslint.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/GraphiteEditor/Graphite.git"
},
"author": "Graphite Authors <contact@graphite.art>",
"license": "Apache-2.0",
"homepage": "https://graphite.art",
"type": "module",
"scripts": {
"postinstall": "node .build-scripts/install.ts",
"generate-editor-structure": "node .build-scripts/generate-editor-structure.ts generated/hierarchical_message_system_tree.txt generated/hierarchical_message_system_tree.html",
"lint": "eslint . && tsc --noEmit",
"lint-fix": "eslint . --fix && tsc --noEmit"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.9",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"sass": "1.97.2",
"tar": "^7.5.6",
"typescript-eslint": "^8.53.1"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/bona-nova": "^5.2.8"
}
}