-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "@nightlylabs/aptos-wallet-standard",
"version": "0.0.7",
"license": "Apache-2.0",
"author": "Norbert Bodziony <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"dev": "pnpm build --watch",
"build": "pnpm build:types && pnpm build:tsup",
"build:tsup": "tsup ./src/index.ts --format esm,cjs --sourcemap",
"build:types": "tsc --build",
"prepublishOnly": "pnpm build",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown ."
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.2.0",
"@wallet-standard/core": "1.0.3"
},
"devDependencies": {
"prettier": "^2.5.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}