-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "@arken/forge-protocol",
"version": "0.1.6",
"scripts": {
"build": "npm run dist",
"clean": "del-cli ./build && make-dir ./build",
"dist": "npm run clean && npm run tsc:1",
"test": "npm run dist && jest --runInBand",
"publish": "npm publish --access=public",
"tsc:1": "rm -rf ./build && mkdir ./build && cp package.json ./build && NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 tsc -p tsconfig.build.json --listFiles"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.js",
"default": "./build/index.js"
},
"./core/*": {
"default": "./build/core/*.js",
"types": "./build/core/*.d.ts"
}
},
"dependencies": {
"@trpc/client": "11.0.0-rc.660",
"@trpc/server": "11.0.0-rc.660",
"make-dir-cli": "^3",
"jest": "^29",
"@types/jest": "^29",
"@types/node": "^20",
"zod": "^3",
"dotenv": "^16"
},
"devDependencies": {
"del-cli": "^5"
}
}