-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "utilidades",
"version": "1.4.1",
"description": "Just simple utils for javascript :)",
"homepage": "https://201flaviosilva.github.io/utilidades/",
"author": "201flaviosilva",
"license": "MIT",
"type": "module",
"main": "./dist/utilidades.umd.cjs",
"module": "./dist/utilidades.js",
"types": "./types/main.d.ts",
"scripts": {
"clear": "rm -rf types && rm -rf docs && rm -rf build && rm -rf dist",
"dev": "vite",
"test": "vitest --watch=false",
"test:dev": "vitest",
"coverage": "vitest run --coverage",
"jsdoc": "jsdoc -c jsdoc.conf.json",
"types": "npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"compile": "vite build",
"build": "npm run clear && npm run compile && npm run jsdoc && npm run types",
"bump": "npm run build && np --no-cleanup --any-branch"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.31.4",
"clean-jsdoc-theme": "^4.3.0",
"jsdoc": "^4.0.3",
"np": "^8.0.4",
"typescript": "^5.4.5",
"vite": "^4.5.3",
"vitest": "^0.31.4"
},
"files": [
"README.md",
"CHANGELOG.md",
"package.json",
"dist",
"types",
"index.d.ts"
],
"exports": {
"types": "./types/main.d.ts",
"import": "./dist/utilidades.js",
"require": "./dist/utilidades.umd.cjs"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/201flaviosilva/utilidades.git"
},
"bugs": {
"url": "https://github.com/201flaviosilva/utilidades/issues"
}
}