-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "@pinetwork/pi-sdk-react",
"version": "2.0.0",
"description": "A React component and hooks library for Pi SDK integration",
"keywords": [
"pi",
"pinetwork",
"react",
"sdk"
],
"homepage": "https://github.com/pi-apps/pi-sdk-react#readme",
"repository": {
"type": "git",
"url": "https://github.com/pi-apps/pi-sdk-react"
},
"license": "LicenseRef-PiOS",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"build": "vite build",
"test": "vitest",
"pretest": "yarn plop pi-sdk:install --dest src/tmp/PiButton.tsx",
"plop": "plop"
},
"files": [
"dist",
"cli.js",
"plopfile.js",
"plop-templates",
"PiButton.tsx"
],
"bin": {
"pi-sdk-react-install": "./cli.js"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"pi-sdk-js": "2.0.0",
"plop": "^4.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"jsdom": "^27.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^1.4.0"
},
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./cli.js": "./cli.js",
"./plopfile.js": "./plopfile.js"
}
}