-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.75 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
62
63
64
65
{
"name": "bc-deeplib",
"version": "6.0.0",
"author": "dDeepLb",
"description": "Library for easier development of BC mods, which strives to be a framework :D",
"license": "MIT",
"type": "module",
"files": [
"dist",
"lib",
"CREDITS.md",
"README.md"
],
"exports": {
"./deeplib": {
"types": "./dist/deeplib.d.ts",
"import": "./dist/deeplib.js"
},
"./build": {
"types": "./lib/deeplib.d.ts",
"import": "./lib/deeplib.js"
}
},
"scripts": {
"all": "pnpm lint && pnpm type:check && pnpm build && pnpm type:gen && pnpm type:copy && pnpm asset:copy",
"lint": "eslint",
"lint:fix": "eslint --fix",
"build": "node scripts/build.js",
"type:check": "tsc --noEmit",
"type:gen": "npm-dts generate -e ./src/deeplib.ts -o ./dist/deeplib.d.ts -L error",
"type:copy": "node scripts/type_copy.js",
"asset:copy": "node scripts/asset_copy.js",
"prepublishOnly": "pnpm all"
},
"bin": {
"deeplib": "./lib/deeplib.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^22.19.19",
"@types/serve-static": "^2.2.0",
"bc-stubs": "128.0.0",
"bondage-club-mod-sdk": "^1.2.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"npm-dts": "^1.3.13",
"sass": "^1.99.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"dependencies": {
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"esbuild": "^0.28.0",
"esbuild-plugin-progress": "^1.3.9",
"esbuild-plugin-time": "^1.0.0",
"esbuild-sass-plugin": "^3.7.0",
"fs-extra": "^11.3.5",
"js-logger": "^1.6.1",
"serve-static": "^2.2.1",
"simple-git": "^3.36.0"
},
"packageManager": "pnpm@10.26.2"
}