-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
36
37
38
39
40
41
42
{
"name": "react-native-linear-gradient-web",
"version": "1.1.0",
"main": "dist/cjs/index.js",
"react-native": "src/index.tsx",
"module": "dist/esm/index.js",
"types": "src/index.tsx",
"source": "src/index.tsx",
"license": "MIT",
"repository": "git@github.com:retyui/react-native-linear-gradient-web.git",
"author": "David <4661784+retyui@users.noreply.github.com>",
"scripts": {
"prepublishOnly": "yarn build",
"build:esm": "tsc --allowImportingTsExtensions false --noEmit false --outDir dist/esm --module ESNext",
"build:cjs": "tsc --allowImportingTsExtensions false --moduleResolution 'node10' --noEmit false --outDir dist/cjs --module CommonJS",
"build": "yarn build:esm && yarn build:cjs"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@react-native/typescript-config": "^0.80.1",
"@types/react": "^19.1.8",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-native": "^0.80.1",
"typescript": "^5.8.3"
}
}