-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.35 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.35 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
72
73
74
75
76
77
78
79
80
{
"name": "@o2s/framework",
"version": "1.18.0",
"private": false,
"license": "MIT",
"description": "Core O2S framework providing modules, SDK, and ApiConfig for building composable customer portals.",
"keywords": [
"o2s",
"framework",
"core",
"sdk",
"modules"
],
"repository": {
"type": "git",
"url": "https://github.com/o2sdev/openselfservice.git",
"directory": "packages/framework"
},
"homepage": "https://github.com/o2sdev/openselfservice/tree/main/packages/framework#readme",
"bugs": {
"url": "https://github.com/o2sdev/openselfservice/issues"
},
"type": "commonjs",
"exports": {
"./config": {
"import": "./dist/src/config/index.js",
"require": "./dist/src/config/index.js"
},
"./modules": {
"import": "./dist/src/index.js",
"require": "./dist/src/index.js"
},
"./sdk": {
"import": "./dist/src/sdk.js",
"require": "./dist/src/sdk.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --preserveWatchOutput && tsc-alias",
"test": "vitest run",
"lint": "tsc --noEmit && eslint . --ignore-pattern .eslintrc.js --max-warnings=0",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,json}\"",
"generate:component": "turbo gen core-component"
},
"dependencies": {
"@o2s/utils.logger": "*",
"logform": "2.7.0",
"ofetch": "^1.5.1",
"qs": "^6.15.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@o2s/eslint-config": "*",
"@o2s/lint-staged-config": "*",
"@o2s/prettier-config": "*",
"@o2s/typescript-config": "*",
"@o2s/vitest-config": "*",
"@turbo/gen": "^2.8.11",
"@types/express": "^5.0.6",
"@types/qs": "^6.14.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.3",
"express": "5.2.1",
"jsonwebtoken": "^9.0.3",
"prettier": "^3.8.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.0.16",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11",
"rxjs": "^7"
}
}