-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "nonci",
"version": "0.2.0",
"description": "wrapper sdk for nonci api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npm run format && npm run lint && tsup src/ --format esm,cjs --dts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix 'src/**/*.{js,ts}'",
"format": "prettier --write 'src/**/*.ts' --config ./.prettierrc",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.mjs"
}
},
"repository": "https://github.com/nonci-xyz/sdk.git",
"author": "Sahil Pabale <[email protected]> (https://sahil.lol)",
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.4.0"
}
}