-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
44
45
46
47
48
49
50
51
52
53
{
"name": "quickentity-script",
"version": "2.3.1",
"description": "An easier way of writing QN patches with code",
"main": "dist/src/lib.js",
"types": "./dist/src/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && pnpm run build:types",
"build:watch": "tsc -w",
"build:types": "dts-bundle-generator --export-referenced-types false -o dist/src/index.d.ts src/lib.ts",
"test": "mocha",
"test:watch": "mocha --parallel --watch --watch-files src/**/*,test/**/* test/**/*.test.js",
"prepublish": "rm -rf dist && pnpm run build"
},
"keywords": [
"hitman",
"quickentity",
"qn",
"patch",
"h3"
],
"author": "BSh",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/md5": "^2.3.2",
"@types/node": "^18.16.3",
"dts-bundle-generator": "^8.0.1",
"mocha": "^10.2.0",
"sinon": "^15.0.4",
"typescript": "^5.0.4"
},
"dependencies": {
"md5": "^2.3.0"
},
"files": [
"src/**/*",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/bennett-sh/quickentity-script.git"
},
"homepage": "https://github.com/bennett-sh/quickentity-script",
"bundles": {
"index.d.ts": {
"inputFiles": [
"dist/src/**/*.d.ts"
]
}
}
}