-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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
{
"name": "@lastro-co/retool-utils",
"author": {
"name": "André Vandal",
"email": "me@andrevandal.dev",
"url": "https://andrevandal.dev"
},
"private": false,
"version": "0.10.2",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
}
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"docs": "typedoc",
"preview": "vite preview",
"build": "tsc && vite build",
"prepublishOnly": "npm-dts generate --output ./dist/index.d.ts",
"build:watch": "tsc && vite build --watch && typedoc",
"dev": "vite && typedoc",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"format:html": "prettier --ignore-path .gitignore '**/*.html' --write",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.ts": "eslint --ignore-path .gitignore --fix",
"*.html": "format:html"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@types/web": "^0.0.88",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.27.2",
"c8": "^7.12.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"lodash": "4.17.12",
"moment": "2.24",
"npm-dts": "^1.3.12",
"numbro": "2.3.2",
"papaparse": "4.6.3",
"prettier": "^2.8.3",
"typedoc": "^0.23.24",
"typescript": "^4.9.3",
"uuid": "8.3.2",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.0.3",
"vitest": "^0.27.2"
},
"dependencies": {
"consola": "^2.15.3"
}
}