-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.6 KB
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": "@croct/sdk",
"version": "0.0.0-dev",
"description": "Croct SDK for JavaScript.",
"license": "MIT",
"author": {
"name": "Croct",
"email": "sdk-js+lib@croct.com",
"url": "https://croct.com"
},
"type": "module",
"main": "./index.js",
"types": "./index.d.js",
"exports": {
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/sdk-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/sdk-js/issues"
},
"homepage": "https://github.com/croct-tech/sdk-js#readme",
"scripts": {
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest -c jest.config.mjs --coverage",
"validate": "tsc --noEmit",
"build": "tsup",
"postbuild": "./post-build.mjs"
},
"dependencies": {
"@croct/content-model": "^0.21.1",
"@croct/json": "^2.0.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.8.3",
"@eslint/eslintrc": "^3.3.3",
"@fetch-mock/jest": "^0.2.20",
"@types/jest": "^30.0.0",
"@typescript-eslint/parser": "^8.53.0",
"esbuild-fix-imports-plugin": "^1.0.19",
"eslint": "^9.39.0",
"fetch-mock": "^12.6.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-extended": "^7.0.0",
"ts-jest": "^29.4.9",
"tsup": "^8.4.0",
"typescript": "^6.0.0"
},
"files": [
"**/*.js",
"**/*.cjs",
"**/*.mjs",
"**/*.ts",
"**/*.mts",
"**/*.cts",
"**/*.map"
],
"browserslist": [
"last 1 version"
]
}