This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
generated from VitorLuizC/typescript-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@8xff/atm0s-media-react",
"version": "0.1.0",
"description": "",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"files": [
"dist/",
"types/"
],
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"devDependencies": {
"@8xff/atm0s-media-js": "0.1.3-alpha.7",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react": "^14.1.2",
"@types/eslint": "^8.56.0",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.6",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"scripts": {
"doc": "typedoc src/index.ts",
"test": "jest --passWithNoTests",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.mjs",
"prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build",
"config:prerelease": "node ./scripts/configurePrerelease.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8xff/media-sdk-react.git"
},
"keywords": [],
"author": {
"name": "Luong Ngoc Minh"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/8xff/media-sdk-react/issues"
},
"homepage": "https://github.com/8xff/media-sdk-react#readme",
"peerDependencies": {
"@8xff/atm0s-media-js": ">=0.1.3-alpha",
"@types/react": ">=16",
"react": ">=16"
}
}