-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
44
45
46
47
48
49
50
51
{
"name": "@what3words/javascript-loader",
"version": "5.0.4",
"description": "",
"private": true,
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"config": {
"root": "../../.."
},
"scripts": {
"clean": "npx del node_modules",
"prebuild": "npx del dist",
"build": "node esbuild.config.mjs",
"postbuild": "tsc -p tsconfig.json",
"format": "prettier --check . --ignore-path $npm_package_config_root/.gitignore --ignore-path .prettierignore",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.13.9",
"esbuild": "^0.24.0",
"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"
}
}