forked from GPTGenius/midjourney-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "midjourney-fetch",
"version": "0.1.1",
"description": "",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
}
},
"packageManager": "[email protected]",
"scripts": {
"dev": "rimraf dist && tsup --sourcemap inline --watch",
"build": "rimraf dist && tsup --treeshake --minify",
"prepublishOnly": "pnpm build",
"typecheck": "tsc",
"test": "vitest run",
"lint": "eslint --quiet --ext .ts .",
"prepare": "husky install"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/GPTGenius/midjourney-fetch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix --quiet",
"prettier --write"
]
}
}