-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.36 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
{
"name": "lightdash",
"version": "14.0.0",
"description": "A small TypeScript utility library to complement lodash",
"keywords": [
"lodash",
"utility"
],
"homepage": "https://github.com/RillingDev/lightdash#readme",
"bugs": {
"url": "https://github.com/RillingDev/lightdash/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Felix Rilling",
"email": "[email protected]",
"url": "https://rilling.dev"
},
"contributors": [
"Felix Rilling",
"Tyler Roberts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RillingDev/lightdash.git"
},
"type": "module",
"exports": "./dist/main.js",
"main": "./dist/main.js",
"scripts": {
"start": "npm run dist",
"dist": "npm run lint && npm run clean && npm run build && npm run test && npm run docs",
"clean": "rm -rf ./dist",
"build": "tsc --build ./src/tsconfig.json",
"watch": "tsc --build ./src/tsconfig.json -w",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"fix": "prettier . --write && eslint . --fix",
"test": "jest",
"docs": "typedoc"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.0.3",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"typedoc": "^0.27.6",
"typescript": "~5.7.3",
"typescript-eslint": "^8.18.1"
}
}