-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1021 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1021 Bytes
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
{
"name": "@pinetwork/pi-sdk-js",
"version": "2.0.0",
"description": "A JavaScript class for handling front-end protocol for Pi transactions.",
"keywords": [
"pi",
"pinetwork",
"network",
"transactions"
],
"homepage": "https://github.com/pi-apps/pi-sdk-js#readme",
"bugs": {
"url": "https://github.com/pi-apps/pi-sdk-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pi-apps/pi-sdk-js.git"
},
"license": "LicenseRef-PiOS",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@types/node": "^25.0.1",
"jsdom": "^27.3.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^1.4.0"
},
"dependencies": {
"async-mutex": "^0.4.0"
}
}