-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "@wormhole-foundation/sdk-definitions-ntt",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "git+https://github.com/wormhole-foundation/native-token-transfers.git"
},
"bugs": {
"url": "https://github.com/wormhole-foundation/native-token-transfers"
},
"homepage": "https://github.com/wormhole-foundation/native-token-transfers#readme",
"directories": {
"test": "__tests__"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist/esm",
"dist/cjs"
],
"sideEffects": true,
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"typesVersions": {
"*": {
"*": [
"./dist/cjs/index.d.ts",
"./dist/esm/index.d.ts"
]
}
},
"scripts": {
"build:cjs": "tsc -p ./tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build": "npm run build:esm && npm run build:cjs",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf ./dist",
"test": "jest --config ./jest.config.ts"
},
"peerDependencies": {
"@wormhole-foundation/sdk-base": "^1.0.0",
"@wormhole-foundation/sdk-definitions": "^1.0.0"
},
"type": "module"
}