-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "@laqudee/promise-futurable",
"version": "0.0.2",
"description": "Building Promises from scratch",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"exports": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"scripts": {
"dev": "tsx --no-warnings examples/useFuturable.ts",
"dev:statics": "tsx --no-warnings examples/useFuturableStaticMethods.ts",
"dev:esm": "node examples/useFuturable.es.mjs",
"dev:cjs": "node examples/useFuturable.cjs.js",
"build": "rollup -c",
"test": "vitest",
"format": "prettier --write ."
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"esm": "^3.2.25",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"@types/node": "^20.11.19",
"aggregate-error": "^5.0.0"
}
}