generated from blb-ventures/npm-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.03 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
75
76
77
78
79
{
"name": "@blb-ventures/web-utils",
"version": "1.2.1",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./index.d.ts",
"files": [
"/lib",
"/index.d.ts"
],
"homepage": "https://github.com/blb-ventures/web-utils",
"repository": {
"type": "git",
"url": "https://github.com/blb-ventures/web-utils.git"
},
"bugs": {
"url": "https://github.com/blb-ventures/web-utils/issues"
},
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "rollup --config rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepack": "npm run build",
"lint": "eslint ./src",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Eduardo S Ciciliato",
"license": "MIT",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@blb-ventures/eslint-config": "^0.1.6",
"@rollup/plugin-typescript": "^11.0.0",
"@types/eslint": "^8.21.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vitest/ui": "^0.29.2",
"confusing-browser-globals": "^1.0.11",
"date-fns": "^2.29.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"rollup": "^3.15.0",
"semantic-release": "^20.1.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"contributors": [
{
"name": "Eduardo S Ciciliato",
"url": "https://eduardociciliato.com.br"
}
],
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}