-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.45 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
{
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"browserslist": [
"defaults",
"node >=16"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "prettier --check src/**/*.ts",
"lint:w": "prettier --write src/**/*.ts",
"size": "size-limit"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"name": "photo-flex-layout",
"description": "Simple for use and beutiful layout for photo",
"keywords": [
"flex",
"layout",
"photo",
"google",
"google-photo",
"flex-layout"
],
"author": "Dmitriy Skrylnikov <skrylnikovd@ya.ru>",
"repository": "skrylnikov/photo-flex-layout",
"size-limit": [
{
"path": "dist/index.js",
"limit": "2 KB"
},
{
"path": "dist/index.cjs",
"limit": "2 KB"
}
],
"dependencies": {
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.4.1",
"@size-limit/file": "^8.2.4",
"@swc/core": "^1.3.59",
"@types/jest": "^29.5.1",
"browserslist": "^4.21.5",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rollup": "^3.23.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-ts": "^3.2.0",
"size-limit": "^8.2.4",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}