forked from OpenSecretCloud/OpenSecret-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.98 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
{
"name": "@agicash/opensecret-sdk",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MakePrisms/OpenSecret-SDK"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/opensecret-react.umd.js",
"module": "./dist/opensecret-react.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/opensecret-react.es.js",
"require": "./dist/opensecret-react.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json && npx vite build",
"pack": "bun run build && bun pm pack",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"docs:dev": "cd website && bun run start",
"docs:build": "cd website && bun run build",
"docs:serve": "cd website && bun run serve",
"docs:clear": "cd website && bun run clear",
"docs:deploy": "cd website && bun run deploy"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@peculiar/x509": "^1.12.2",
"@stablelib/base64": "^2.0.0",
"@stablelib/chacha20poly1305": "^2.0.0",
"@stablelib/random": "^2.0.0",
"cbor2": "^1.7.0",
"tweetnacl": "^1.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"@types/bun": "latest",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"openai": "^5.20.0",
"prettier": "^3.3.3",
"typescript": "~5.6.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.12",
"vite-plugin-dts": "^4.3.0"
}
}