-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "natively",
"version": "2.15.11",
"description": "Natively SDK for building native-like web applications",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"natively-frontend.min.js",
"dist"
],
"package-name": "buildnatively/js-sdk#typescript_module",
"scripts": {
"build": "npm run build:webpack && npm run build:types && npm run build:module && npm run build:post",
"build:types": "tsc --emitDeclarationOnly",
"build:webpack": "webpack build",
"build:module": "babel src --extensions \".ts\" --config-file ./babel.config.module.cjs --out-dir ./dist/",
"build:post": "node postbuild.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buildnatively/js-sdk.git"
},
"keywords": [
"natively",
"mobile",
"webview",
"sdk",
"ios",
"android"
],
"author": "Roman Furman",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildnatively/js-sdk/issues"
},
"homepage": "https://github.com/buildnatively/js-sdk#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"babel-loader": "^9.2.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
}
}