-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "maplestory-open-api-js",
"repository": "https://github.com/alstn2468/maplestory-open-api-js",
"version": "0.0.0",
"author": "alstn2468 <alstn2468_@naver.com>",
"license": "MIT",
"workspaces": [
"example/**",
"packages/**"
],
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"prepare": "husky install",
"package": "pnpm --filter maplestory-open-api-js",
"server-demo": "pnpm --filter server-demo",
"client-demo": "pnpm --filter client-demo",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "changeset publish"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"engines": {
"node": ">=18.16.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/eslint": "^8",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1"
}
}