-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.88 KB
/
package.json
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
{
"name": "unipile-node-sdk",
"version": "1.9.2",
"description": "Unipile node SDK",
"author": "Unipile",
"license": "ISC",
"type": "commonjs",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.*"
},
"scripts": {
"test-e2e-clean": "jest --clearCache && jest --showConfig && jest --verbose --config ./jest.config.js",
"test-e2e": "jest --verbose --config ./jest.config.js",
"test-e2e-watch": "jest --verbose --config ./jest.config.js --watch",
"test-watch": "jest --verbose --config ./jest.config.js --watch",
"clean": "rimraf dist",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.base.json --emitDeclarationOnly --outDir dist/types",
"build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs && cp package.json dist/package.json",
"prepublishOnly": "npm run build",
"postversion": "git push origin"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"babel-jest": "^29.7.0",
"eslint": "^8.48.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.2.4",
"typescript": "^5.2.2"
},
"dependencies": {
"@sinclair/typebox": "^0.31.8",
"@types/qrcode": "^1.5.2",
"qrcode": "^1.5.3"
}
}