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
| {
| "name": "@life-payment/core",
| "private": true,
| "main": "src/index.ts",
| "module": "./src/index.ts",
| "types": "./dist/types/index.d.ts",
| "version": "0.0.1",
| "scripts": {
| "dev": "modern dev",
| "build": "modern build",
| "build:watch": "modern build -w"
| },
| "files": [
| "dist"
| ],
| "devDependencies": {
| "@modern-js/module-tools": "2.49.3",
| "axios": "1.4.0"
| },
| "peerDependencies": {
| "axios": "*"
| },
| "publishConfig": {
| "access": "public",
| "registry": "https://registry.npmjs.org/",
| "types": "./dist/types/index.d.ts",
| "main": "./dist/lib/index.js",
| "module": "./dist/es/index.js"
| }
| }
|
|