-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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": "@security-alliance/opencti-client",
"version": "0.1.2",
"description": "OpenCTI client",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./stix": "./dist/stix/index.js"
},
"typesVersions": {
"*": {
".": [
"dist/index.d.ts"
],
"./stix": [
"dist/stix/index.d.ts"
]
}
},
"scripts": {
"build": "rm -rf dist/; tsc -p tsconfig.release.json",
"test": "mocha",
"prepublishOnly": "pnpm run build",
"prettier:check": "npx prettier -c \"**/*.{js,ts,md,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{js,ts,md,json,yml,yaml}\""
},
"keywords": [
"opencti",
"client",
"security-alliance"
],
"author": "Security Alliance",
"license": "MIT",
"files": [
"dist/"
],
"dependencies": {
"@apollo/client": "^3.10.4",
"@blakeembrey/deque": "^1.0.5",
"@security-alliance/stix": "^0.1.1",
"apollo-upload-client": "^18.0.1",
"eventsource": "^2.0.2",
"fast-json-patch": "^3.1.1",
"graphql": "^16.8.1",
"json-canonicalize": "^1.0.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/apollo-upload-client": "^18.0.0",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.12.7",
"@types/uuid": "^10.0.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.4.5"
}
}