-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
71 lines (71 loc) · 1.97 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
69
70
71
{
"name": "axiom-js-toolkit",
"private": true,
"description": "The official JS toolkit & bindings for the Axiom API",
"version": "0.13.0",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Lukas Malkmus <[email protected]>",
"Islam Shehata <[email protected]>",
"Arne Bahlo <[email protected]>"
],
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"keywords": [
"axiom",
"api",
"rest",
"client"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"homepage": "https://github.com/axiomhq/axiom-js",
"scripts": {
"format": "turbo run format",
"lint": "turbo run lint",
"build": "turbo run build",
"build:cjs": "turbo run build:cjs",
"test": "turbo run test",
"integration": "turbo run integration",
"e2e": "turbo run e2e"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.30",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.32.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jsdom": "^24.0.0",
"prettier": "^3.3.1",
"rollup": "^4.22.4",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^0.34.6",
"winston": "^3.14.2"
},
"workspaces": [
"packages/*",
"examples/*",
"integration",
"e2e/*"
]
}