-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 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
{
"name": "@kartore/spritore",
"version": "0.0.1",
"description": "Generate sprites for maps.",
"packageManager": "[email protected]",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Kartore/spritore.git"
},
"author": {
"name": "NEKOYASAN",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Kartore/spritore/issues"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint:type": "tsc --noEmit",
"lint:eslint": "eslint src/**/*.ts",
"fix:prettier": "prettier --write src/**/*.{js,ts,json}",
"fix:eslint": "eslint src/**/*.ts --fix",
"lint": "pnpm run lint:type && pnpm run lint:eslint",
"fix": "pnpm run fix:prettier && pnpm run fix:eslint",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/node": "18.16.17",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"typescript": "5.1.3"
},
"dependencies": {
"glob": "10.2.7",
"sharp": "0.32.1"
}
}