-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
43
{
"name": "form-api-ex",
"version": "0.5.2",
"description": "Work with LLSE forms easily!",
"type": "module",
"main": "lib/FormAPIEx.cjs",
"module": "lib/FormAPIEx.mjs",
"types": "lib/FormAPIEx.d.ts",
"license": "Apache-2.0",
"author": "student_2333 <[email protected]>",
"keywords": [
"liteloader",
"liteloaderbds",
"llse",
"lxl",
"ll"
],
"scripts": {
"build:dts": "dtsc",
"build:cjs": "esbuild src/index.ts --bundle --format=cjs --outfile=lib/FormAPIEx.cjs",
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=lib/FormAPIEx.mjs",
"build:post": "node -e \"require('fs').renameSync('./lib/index.d.ts', './lib/FormAPIEx.d.ts')\"",
"build": "pnpm build:dts && pnpm build:cjs && pnpm build:esm && pnpm build:post",
"clean": "rimraf ./lib"
},
"files": [
"lib/FormAPIEx.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lgc-LLDev/FormAPIEx.git"
},
"bugs": {
"url": "https://github.com/lgc-LLDev/FormAPIEx/issues"
},
"homepage": "https://github.com/lgc-LLDev/FormAPIEx",
"devDependencies": {
"dtsc": "^3.0.4",
"esbuild": "^0.23.0",
"rimraf": "^6.0.0",
"typescript": "^5.3.3"
}
}