generated from un-ts/lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 3.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "yocto-ttl-cache",
"version": "0.1.2",
"type": "module",
"description": "The smallest and fastest TTL cache implementation in JavaScript",
"repository": "git+https://github.com/rx-ts/yocto-ttl-cache.git",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"donate": {
"recipients": [
{
"name": "unts",
"platform": "opencollective",
"address": "https://opencollective.com/unts",
"weight": 60
},
{
"name": "rxts",
"platform": "opencollective",
"address": "https://opencollective.com/rxts",
"weight": 20
},
{
"name": "1stG",
"email": "[email protected]",
"weight": 20,
"platforms": [
{
"platform": "opencollective",
"address": "https://opencollective.com/1stG"
},
{
"platform": "patreon",
"address": "https://www.patreon.com/1stG"
}
]
}
]
},
"funding": "https://opencollective.com/unts",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"imports": {
"./perf.js": {
"node": "./src/node.ts",
"default": "./src/perf.ts"
}
},
"exports": "./src/index.ts",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"benchmark": "NO_COLOR=1 node benchmark > benchmark/benchmark.txt",
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -p src",
"codesandbox:install": "yarn",
"dev": "w -e docs",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"prerelease": "pnpm build",
"release": "changeset publish",
"serve": "sirv dist -s",
"test": "jest",
"typecov": "type-coverage",
"vercel-build": "w -e docs -p --publicPath /"
},
"devDependencies": {
"@1stg/app-config": "^7.3.0",
"@1stg/lib-config": "^10.1.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.24.4",
"@isaacs/ttlcache": "^1.2.1",
"@pkgr/webpack": "^3.3.0",
"@pkgr/webpack-mdx": "^2.1.0",
"@size-limit/preset-small-lib": "^8.0.1",
"@types/jest": "^28.1.8",
"@types/mdx": "^2.0.3",
"@types/node": "^18.7.9",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/web": "^0.0.93",
"github-markdown-css": "^5.1.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mitata": "^0.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sirv-cli": "^2.0.2",
"size-limit": "^8.0.1",
"ts-jest": "^28.0.8",
"type-coverage": "^2.22.0",
"typescript": "^4.7.4"
},
"publishConfig": {
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"imports": {
"./perf.js": {
"node": "./lib/node.js",
"default": "./lib/perf.js"
}
},
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "200b"
}
],
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}