-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 KB
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
{
"name": "pi-backend",
"version": "0.1.3",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": "git@github.com:pi-apps/pi-nodejs.git",
"homepage": "https://github.com/pi-apps/pi-nodejs",
"author": "Pi Core Team",
"license": "PiOS",
"scripts": {
"build": "yarn build:types && yarn build:js",
"build:js": "PI_ENV=production tsx esbuild.ts",
"build:types": "tsc --outDir dist",
"dev": "concurrently \"yarn dev:types\" \"yarn dev:js\"",
"dev:js": "PI_ENV=development tsx esbuild.ts --watch",
"dev:types": "tsc --outDir dist --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"concurrently": "^9.1.2",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.2.0",
"axios": "^1.8.4",
"dotenv": "^16.5.0"
},
"engines": {
"node": ">=16.0.0"
}
}