-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "factorio-gridlines",
"version": "1.0.5",
"private": true,
"description": "Enhance your building layouts with a powerful and flexible grid system! Gridlines adds customizable grids to your world, allowing for precise and efficient designs across multiple layers.",
"keywords": [
"factorio",
"mod",
"gridlines"
],
"homepage": "https://mods.factorio.com/mod/gridlines",
"bugs": {
"url": "https://github.com/canisminor1990/factorio-gridlines/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/canisminor1990/factorio-gridlines.git"
},
"author": "CanisMinor <[email protected]>",
"sideEffects": false,
"scripts": {
"archive": "node scripts/archive.js",
"build": "tstl && node scripts/build.js",
"ci": "npm run lint && npm run type-check",
"dev": "npm run build && concurrently -n tstl,dev -c blue,yellow \"tstl --watch\" \"node scripts/dev.js\"",
"export": "scripts/dev_export.sh",
"i18n": "lobe-i18n",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\" --fix",
"lint:md": "remark . --quiet --frail --output",
"prepare": "husky install",
"prepublishOnly": "npm run build && npm run archive",
"release": "semantic-release",
"type-check": "tsc -p tsconfig.json",
"upload": "node scripts/upload.js"
},
"lint-staged": {
"*.md": [
"remark --quiet --output --",
"prettier --write --no-error-on-unmatched-pattern"
],
"*.json": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@lobehub/i18n-cli": "^1.20.0",
"@lobehub/lint": "^1.24.4",
"@semantic-release/exec": "^6.0.3",
"archiver": "^7.0.1",
"chokidar": "^4.0.1",
"commitlint": "^18.6.1",
"concurrently": "^9.0.1",
"consola": "^3.2.3",
"eslint": "^8.57.0",
"form-data": "^4.0.1",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.9",
"markdown-to-txt": "^2.0.1",
"prettier": "^3.3.3",
"remark": "^14.0.3",
"remark-cli": "^11.0.0",
"semantic-release": "^21.1.2",
"semantic-release-config-gitmoji": "^1.5.3",
"typed-factorio": "^3.0.1",
"typescript": "^5.6.3",
"typescript-to-lua": "^1.27.0"
}
}