-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.04 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
64
65
66
67
68
{
"name": "outpostkit",
"version": "0.0.22",
"description": "The Outpost API Node.js SDK with TypeScript support.",
"homepage": "https://outpost.run",
"repository": {
"type": "git",
"url": "https://github.com/outposthq/outpostkit.git"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config rollup.config.mjs",
"changeset": "changeset",
"format": "prettier -w .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build",
"prettier": "prettier -c .",
"version": "changeset version",
"version:dev": "changeset version --snapshot dev",
"release:dev": "changeset publish --tag dev",
"release": "changeset publish"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"axios": "^1.4.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/jsdom": "^21.1.1",
"@types/mime-types": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"glob": "^10.3.3",
"jest": "^29.6.2",
"jsdom": "^22.1.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.27.2",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-node-externals": "^6.1.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-summary": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
}
}