-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "basyx-typescript-sdk",
"version": "0.1.11",
"description": "BaSyx TypeScript SDK for developing applications and components for the Asset Administration Shell (AAS)",
"type": "module",
"main": "bundle/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./bundle/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": "https://github.com/eclipse-basyx/basyx-typescript-sdk.git",
"author": "Aaron Zielstorff <[email protected]>",
"license": "MIT",
"files": [
"bundle",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"openapi-ts": "openapi-ts",
"build": "tsc",
"bundle": "rollup -c",
"lint:check": "eslint ./",
"lint:fix": "eslint --fix ./",
"test": "jest --coverage",
"start": "ts-node -r tsconfig-paths/register src/testFunctions.ts"
},
"dependencies": {
"@hey-api/client-fetch": "^0.7.0"
},
"peerDependencies": {
"@aas-core-works/aas-core3.0-typescript": "^1.0.3"
},
"devDependencies": {
"@aas-core-works/aas-core3.0-typescript": "^1.0.3",
"@hey-api/openapi-ts": "^0.64.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"jiti": "^2.4.2",
"openapi-typescript-codegen": "^0.29.0",
"prettier": "^3.4.2",
"rollup": "^4.34.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}