-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "arrow-render-to-string",
"version": "0.0.3",
"repository": "[email protected]:barelyhuman/arrow-render-to-string.git",
"license": "MIT",
"author": "Reaper <[email protected]>",
"main": "./index.js",
"module": "./index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"bench": "npm run build; node bench/index.js",
"dev": "tsup --watch",
"next": "bumpp",
"fix": "prettier --write .",
"test": "uvu -r esm tests",
"test:ci": "c8 uvu -r esm tests ",
"size": "sizesnap",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^1.0.0",
"benchmark": "^2.1.4",
"bumpp": "^9.2.0",
"c8": "^8.0.1",
"esm": "^3.2.25",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.7.1",
"pretty-bytes": "^6.1.1",
"sizesnap": "^0.2.1",
"systeminformation": "^5.21.14",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"uvu": "^0.5.6",
"uvu-inline-snapshot": "^0.0.2"
},
"sizesnap": {
"files": [
"dist/*.dts",
"dist/*.ts",
"dist/*.js",
"dist/*.mjs"
]
},
"lint-staged": {
"*.{js,css,md,json}": "prettier --write"
},
"peerDependencies": {
"@arrow-js/core": "^1.0.0-alpha.9"
}
}