-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.23 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
{
"name": "datalayer-helper",
"version": "1.0.0",
"description": "A JavaScript library for working with data layers",
"main": "./dist/datalayer-helper.js",
"types": "./dist/datalayer-helper.d.js",
"repository": "https://github.com/toniarndt/datalayer-helper.git",
"author": "toniarndt <hello@toniarndt.com>",
"license": "MIT",
"scripts": {
"lint": "yarn lint:js && yarn lint:types",
"lint:js": "eslint src --ext .ts,.js",
"lint:types": "tsc --noEmit",
"build:docs": "rm -rf ./docs && typedoc --sort source-order --plugin typedoc-plugin-markdown --hideBreadcrumbs",
"build": "rm -rf ./dist && yarn esbuild",
"build:all": "yarn lint && yarn build && yarn build:docs",
"esbuild": "node esbuild.js",
"format": "prettier -w ."
},
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"esbuild": "^0.20.0",
"esbuild-plugin-define": "^0.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3"
}
}