-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 942 Bytes
/
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
{
"name": "@devkrieger/sampquery",
"version": "2.2.2",
"description": "A tool for interact with SA-MP Queries",
"main": "./lib/cjs/index.js",
"module": "./lib/ems/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:csj",
"build:esm": "npx tsc",
"build:csj": "npx tsc --module commonjs --outDir lib/cjs",
"clean": "rm -rf ./lib/*",
"prepare": "npm run clean && npm run build",
"postinstall": "node scripts/postinstall.js"
},
"author": "KriegerDev",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.2.3",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LouzinDeev/sampquery-ts.git"
},
"files": [
"lib",
"scripts"
],
"bugs": {
"url": "https://github.com/LouzinDeev/sampquery-ts/issues"
},
"homepage": "https://github.com/LouzinDeev/sampquery-ts#readme"
}