-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
{
"name": "@ORGANIZATION/PROJECT-api",
"version": "0.1.0",
"description": "API for PROJECT",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "pnpm build:sdk && pnpm build:ttsc && pnpm build:rolldown",
"build:sdk": "cd ../backend && pnpm build:sdk",
"build:ttsc": "rimraf lib && ttsc -p tsconfig.json",
"build:rolldown": "rolldown -c",
"format": "ttsc format -p tsconfig.json",
"lint": "ttsc -p tsconfig.json --noEmit",
"prepack": "pnpm build"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/backend"
},
"author": "AUTHOR",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/backend/issues"
},
"homepage": "https://github.com/samchon/backend#readme",
"files": [
"lib",
"package.json",
"swagger.json",
"README.md"
],
"dependencies": {
"@nestia/fetcher": "catalog:samchon",
"tgrid": "catalog:samchon",
"typia": "catalog:samchon"
},
"devDependencies": {
"@ORGANIZATION/PROJECT-api": "workspace:^",
"@ttsc/lint": "catalog:typescript",
"@ttsc/unplugin": "catalog:typescript",
"rimraf": "catalog:utils",
"rolldown": "catalog:rolldown",
"tinyglobby": "^0.2.12",
"ttsc": "catalog:typescript",
"typescript": "catalog:typescript"
},
"publishConfig": {
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
}
}
}