-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.09 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
80
81
82
83
84
85
86
87
88
{
"name": "@steelwindshellahillz/masonry-ts",
"description": "TypeScript lib for build masonry matrix with height balanced",
"keywords": [
"async",
"masonry",
"masonry-ts",
"typescript"
],
"author": {
"name": "Kirill Shurov",
"email": "kirillsurov0@gmail.com",
"url": "https://github.com/steelWinds"
},
"bugs": {
"url": "https://github.com/steelWinds/masonry-ts/issues",
"email": "kirillsurov0@gmail.com"
},
"homepage": "https://github.com/steelWinds/masonry-ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/steelWinds/masonry-ts.git"
},
"private": false,
"version": "0.0.1",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"types": "./dist/main.d.ts",
"scripts": {
"build": "rollup --config && tsc-alias",
"dev": "husky && rollup --watch --config",
"test": "vitest run --coverage",
"lint": "eslint ./src/**/*.{js,ts} --fix",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*.{js,ts}": "eslint --fix"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.9.1",
"@faker-js/faker": "^8.4.1",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/node": "^22.5.1",
"@types/uniqid": "^5.3.4",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"lint-staged": "^15.2.9",
"tsc-alias": "^1.8.10",
"tslib": "^2.7.0",
"typescript-eslint": "^8.3.0",
"vitest": "^2.0.5"
},
"volta": {
"node": "20.17.0"
},
"engines": {
"node": ">=18.19.1"
},
"dependencies": {
"husky": "^9.1.5",
"image-dimensions": "^2.3.0",
"ofetch": "^1.3.4",
"uniqid": "^5.4.0"
}
}