-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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": "remix-response",
"version": "1.0.2",
"repository": "git@github.com:bmac/remix-response",
"license": "MIT",
"author": "Brendan McLoughlin <bmac325@gmail.com>",
"keywords": ["remix", "remix.run", "response"],
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node src/index.ts --format cjs,esm --external 'fs-extra' --dts --clean",
"docs:generate": "readme-api-generator src/index.ts --ts",
"lint": "yarn prettier --check **/*.ts",
"prettier:fix": "yarn prettier --write **/*.ts",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"test": "vitest run"
},
"devDependencies": {
"@scalvert/readme-api-generator": "^0.2.3",
"@types/node": "^16.9.1",
"@remix-run/web-fetch": "^4.3.8",
"prettier": "^2.3.0",
"release-it": "^16.1.5",
"release-it-lerna-changelog": "^5.0.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.3"
},
"engines": {
"node": ">= 14.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}