-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 955 Bytes
/
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
{
"name": "phunky",
"version": "2.0.0",
"description": "Funky promise-based cached thunk",
"keywords": [
"thunk",
"cache",
"async",
"promise"
],
"author": "mupperton",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mupperton/phunky.git"
},
"homepage": "https://github.com/mupperton/phunky#readme",
"bugs": {
"url": "https://github.com/mupperton/phunky/issues"
},
"engines": {
"node": ">=14.20.1"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"sideEffects": false,
"scripts": {
"bump": "npm --no-git-tag-version version",
"build": "bun run --bun build.ts",
"prepack": "rm -f ./*.tgz",
"pack": "npm pack"
},
"devDependencies": {
"bun-plugin-dts": "0.2.1",
"bun-types": "1.0.13"
}
}