-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.12 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
{
"name": "nomlish-translator-node",
"description": "文字列をノムリッシュ翻訳します",
"author": {
"name": "すえ",
"url": "https://souhait.me"
},
"keywords": [
"nomlish",
"translate",
"Japanese"
],
"repository": {
"type": "git",
"url": "git+https://github.com/souhait0614/nomlish-translator-node.git"
},
"bugs": {
"url": "https://github.com/souhait0614/nomlish-translator-node/issues"
},
"homepage": "https://github.com/souhait0614/nomlish-translator-node#readme",
"license": "MIT",
"version": "1.0.2",
"type": "module",
"engines": {
"node": ">=14.21.3"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"main": "/dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "tsc && vite build",
"watch": "vite build -w",
"prepublishOnly": "npm run build",
"lint": "npm-run-all -p lint:*",
"lint:eslint": "eslint src/",
"lint:markdownlint": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"fix": "npm-run-all -p fix:*",
"fix:eslint": "eslint --fix src/",
"fix:prettier": "prettier --write src/",
"fix:markdownlint": "markdownlint-cli2-fix \"**/*.md\" \"#node_modules\""
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"markdownlint-cli2": "^0.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0"
},
"dependencies": {
"cross-fetch": "^3.1.6",
"fetch-cookie": "^2.1.0"
}
}