-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.81 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
{
"name": "@cubux/readonly-map",
"version": "2.0.1",
"description": "Functions to work with read-only maps",
"keywords": [
"map",
"readonly",
"read-only",
"immutable",
"typescript"
],
"author": {
"name": "Vovan-VE",
"email": "vovan-ve@yandex.ru"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cubux-net/ts-readonly-map.git"
},
"bugs": {
"url": "https://github.com/cubux-net/ts-readonly-map/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/readonly-map.esm.js",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "dts build",
"start": "dts watch",
"prepare": "dts build",
"test": "tsc --noEmit && dts test --passWithNoTests",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"analyze": "size-limit --why",
"lint": "dts lint",
"size": "size-limit"
},
"peerDependencies": {
"typescript": "^3 || ^4 || ^5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"@tsconfig/recommended": "^1.0.3",
"dts-cli": "^2.0.3",
"husky": "^8.0.1",
"lint-staged": "^15.2.0",
"size-limit": "^11.0.0",
"tslib": "^2.6.2",
"typescript": "~5.0"
},
"lint-staged": {
"src/**/*.{js,ts,json}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"size-limit": [
{
"path": "dist/readonly-map.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/readonly-map.esm.js",
"limit": "10 KB"
}
]
}