-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "swrr",
"version": "0.0.6",
"license": "MIT",
"author": "Marais Rossow <[email protected]> (https://marais.io)",
"sideEffects": false,
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"index.mjs"
],
"scripts": {
"build": "bundt --minify",
"format": "prettier --write src .github *.md *.json",
"test": "uvu src \".test.ts$\" -r tsm",
"typecheck": "tsc --noEmit"
},
"prettier": "@marais/prettier",
"dependencies": {
"object-identity": "^0.1.1",
"worktop": "0.8.0-next.15"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20230518.0",
"@marais/prettier": "0.0.4",
"@marais/tsconfig": "0.0.4",
"@types/node": "20.3.2",
"bundt": "2.0.0-next.5",
"nanospy": "1.0.0",
"prettier": "2.8.8",
"tsm": "2.3.0",
"typescript": "5.1.3",
"uvu": "0.5.4"
},
"volta": {
"node": "18.16.1"
}
}