-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "@what3words/javascript-cli",
"version": "5.0.4",
"private": true,
"type": "module",
"bin": {
"gha-check-package-versions": "bin/gha-check-package-versions.js",
"npm-check-package-versions": "bin/npm-check-package-versions.js",
"publint-lint-package": "bin/publint-lint-package.js"
},
"files": [
"bin",
"dist"
],
"config": {
"root": "../../.."
},
"scripts": {
"prebuild": "npx del dist",
"build": "tsc -b . -f",
"clean": "npx del node_modules",
"format": "prettier --check . --ignore-path $npm_package_config_root/.gitignore --ignore-path .prettierignore",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.13.9",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"package-json": "^10.0.1",
"publint": "^0.3.2"
}
}