forked from Gandi-IDE/custom-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "custom-extension",
"version": "1.0.0",
"description": "Custom extension repository for Gandi IDE.",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check-format": "prettier . --check",
"format": "prettier . --write",
"lint": "eslint . --max-warnings=0",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --ext .js,.jsx,.ts,.tsx --fix",
"git add",
"eslint --ext .js,.jsx,.ts,.tsx"
],
"*.{css,scss}": [
"prettier --write",
"stylelint --fix",
"git add"
],
"*.{html,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gandi-IDE/custom-extension.git"
},
"keywords": [
"scratch",
"extension",
"turbowarp",
"gandi",
"cocrea"
],
"author": "all contributors",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/Gandi-IDE/custom-extension/issues"
},
"homepage": "https://github.com/Gandi-IDE/custom-extension#readme",
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"stylelint": "^16.6.1"
}
}