-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "@trebla/lyra",
"version": "1.0.2",
"description": "A utility library.",
"main": "dist/web/index.js",
"types": "dist/web/index.d.ts",
"exports": {
".": {
"import": "./dist/web/index.js",
"require": "./dist/web/index.js"
},
"./react-native": {
"import": "./dist/react-native/index.js",
"require": "./dist/react-native/index.js"
},
"./common": {
"import": "./dist/common/index.js",
"require": "./dist/common/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.web.json && tsc -p tsconfig.react-native.json",
"test:web": "jest --config jest.web.config.js",
"test:react-native": "jest --config jest.react-native.config.js",
"test": "yarn test:web && yarn test:react-native",
"lint": "eslint . --ext .ts,.tsx",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/TreblaTechnologies/lyra.git"
},
"keywords": [
"helpers",
"hooks",
"enums",
"constants",
"utility"
],
"author": "Trebla <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.7.3",
"react": "^17.0.0"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.24.0",
"@testing-library/react-hooks": "7.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^16.0.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"react-test-renderer": "17.0.2",
"ts-jest": "^29.2.4",
"typescript": "^4.0.0"
}
}