-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "@rarimo/unforgettable-sdk-react",
"version": "1.1.0-rc.1",
"sideEffects": false,
"license": "MIT",
"homepage": "https://unforgettable.app",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && node ./postbuild.js",
"build:cjs": "npx swc src -d ./dist/cjs --config-file ./.swcrc -C module.type=commonjs",
"build:esm": "npx swc src -d ./dist/esm --config-file ./.swcrc -C module.type=es6 isModule=true",
"build:types": "tsc --outDir ./dist/types --declaration --emitDeclarationOnly",
"clean": "rm -rf dist"
},
"dependencies": {
"@rarimo/unforgettable-sdk": "workspace:*",
"qrcode.react": "4.2.0"
},
"devDependencies": {
"@types/node": "18.14.2",
"@types/react": "19.2.0",
"react": "19.2.0",
"tsc-alias": "1.8.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.9.2"
}