-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 971 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 971 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
{
"name": "@paapi/client",
"version": "1.0.2",
"repository": "https://github.com/paapi-js/paapi-server",
"homepage": "https://paapi.pnk.network/",
"files": [
"dist"
],
"main": "./dist/paapi-client.umd.js",
"module": "./dist/paapi-client.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/paapi-client.es.js",
"require": "./dist/paapi-client.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && tsc --project tsconfig.json --emitDeclarationOnly --outDir dist",
"build:demo": "tsc --noEmit && vite build --config vite.config.demo.js",
"preview": "vite preview"
},
"devDependencies": {
"@hotwired/stimulus": "^3.0.1",
"@types/qrcode": "^1.4.2",
"qrcode": "^1.5.0",
"typescript": "^4.5.4",
"vite": "^2.9.5",
"vite-plugin-windicss": "^1.8.4",
"windicss": "^3.5.1"
},
"dependencies": {
"socket.io-client": "^4.4.1"
}
}