-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 970 Bytes
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
{
"name": "sourcelib",
"version": "0.4.3",
"description": "Library for interfacing with source engine files",
"repository": {
"type": "git",
"url": "https://github.com/SecondFaceSoftware/sourcelib"
},
"license": "MIT",
"author": "Stefan Heinz",
"type": "module",
"main": "lib/main.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc -p ./src",
"test": "vitest ./tests",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"bench": "vitest bench ./tests",
"check": "tsc -p ./src --noEmit"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"eslint": "^10.5.0",
"globals": "^17.7.0",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitest": "^5.0.0-beta.5"
},
"dependencies": {
"pathe": "^2.0.3"
}
}