Skip to content

Commit af4e605

Browse files
committed
chore: fix relative paths in package.json
1 parent 3129cfd commit af4e605

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

package/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
"name": "react-native-nitro-sqlite",
33
"version": "9.1.11",
44
"description": "Fast SQLite library for React Native built using Nitro Modules",
5-
"main": "lib/module/index",
6-
"module": "lib/module/index",
7-
"types": "lib/typescript/module/index.d.ts",
8-
"source": "src/index",
9-
"react-native": "src/index",
5+
"main": "./lib/module/index",
6+
"module": "./lib/module/index",
7+
"types": "./lib/typescript/module/index.d.ts",
8+
"source": "./src/index",
9+
"react-native": "./src/index",
1010
"exports": {
1111
".": {
1212
"import": {
13-
"types": "lib/typescript/module/index.d.ts",
14-
"default": "lib/module/index.js"
13+
"types": "./lib/typescript/module/index.d.ts",
14+
"default": "./lib/module/index.js"
1515
},
1616
"require": {
17-
"types": "lib/typescript/commonjs/index.d.ts",
18-
"default": "lib/commonjs/index.js"
17+
"types": "./lib/typescript/commonjs/index.d.ts",
18+
"default": "./lib/commonjs/index.js"
1919
}
2020
}
2121
},

0 commit comments

Comments
 (0)