-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.37 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.37 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
81
82
83
84
85
{
"name": "@sovereign-net/api-client",
"version": "1.3.0",
"type": "module",
"description": "Platform-agnostic API client for Sovereign Network ZHTP nodes",
"main": "./dist/vanilla-js/index.js",
"types": "./dist/vanilla-js/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/vanilla-js/index.d.ts",
"import": "./dist/vanilla-js/index.js",
"require": "./dist/vanilla-js/index.js"
},
"./vanilla-js": {
"types": "./dist/vanilla-js/index.d.ts",
"import": "./dist/vanilla-js/index.js",
"require": "./dist/vanilla-js/index.js"
},
"./react-native": {
"types": "./dist/react-native/index.d.ts",
"import": "./dist/react-native/index.js",
"require": "./dist/react-native/index.js"
},
"./electron": {
"types": "./dist/electron/index.d.ts",
"import": "./dist/electron/index.js",
"require": "./dist/electron/index.js"
}
},
"scripts": {
"build": "tsc && node scripts/fix-imports.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"dev": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit",
"prepare": "npm run type-check && npm run build && npm test",
"release": "bash scripts/manual-release.sh"
},
"keywords": [
"sovereign-network",
"zhtp",
"api-client",
"blockchain",
"decentralized",
"react-native",
"electron"
],
"author": "Sovereign Network",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:SOVEREIGN-NET/Sovereign-Network-API-Client.git"
},
"homepage": "https://github.com/SOVEREIGN-NET/Sovereign-Network-API-Client",
"bugs": {
"url": "https://github.com/SOVEREIGN-NET/Sovereign-Network-API-Client/issues"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^13.1.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.7",
"jsdom": "^27.1.0",
"semantic-release": "^25.0.2",
"typescript": "^5.3.0",
"vitest": "^4.0.7"
}
}