-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.4 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
{
"name": "@interest-protocol/sui-tokens",
"version": "4.1.6",
"description": "A set of tokens strict listed on Interest Protocol Sui products.",
"src": "src/index.ts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"declarationTypes": "types/index.d.ts",
"author": "Interest Protocol",
"private": false,
"sideEffects": false,
"license": "MIT",
"homepage": "https://github.com/interest-protocol/tokens",
"repository": "https://github.com/interest-protocol/tokens",
"scripts": {
"build": "tsc",
"publish:alpha": "pnpm build && npm publish --tag alpha && package-version-git-tag --push && git push",
"publish:beta": "pnpm build && npm publish --tag beta && package-version-git-tag --push && git push",
"publish:latest": "pnpm build && npm publish && package-version-git-tag --push && git push"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"package-version-git-tag": "^3.0.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"files": [
"package.json",
"README",
"dist"
],
"packageManager": "[email protected]+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724"
}