-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.2 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": "opperai",
"version": "2.4.0",
"description": "Typescript SDK for the Opper API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"check:lint": "eslint 'src/**/*.ts'",
"check:type": "tsc --noEmit --project './tsconfig.json'",
"check": "npm run check:type && npm run check:lint && npm run test",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"examples": "for file in examples/example-*.ts; do [[ ! $file =~ example-stream- ]] && echo \"Running $file\" && npx ts-node \"$file\" && echo \"\"; done",
"publish-patch": "npm run check && npm run build && npm version patch",
"publish-minor": "npm run check && npm run build && npm version minor",
"publish-major": "npm run check && npm run build && npm version major"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"engines": {
"node": ">=18"
},
"keywords": [
"opper",
"api",
"sdk",
"typescript"
],
"files": [
"README.md",
"index.js",
"dist/*"
],
"author": "Opper Technology AB",
"license": "ISC",
"devDependencies": {
"@sinclair/typebox": "^0.32.35",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"dotenv": "^16.4.5",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"tsup": "8.3.0",
"typescript": "5.3.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.19.2"
}
}