-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 796 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 796 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
36
{
"name": "@hawk.so/utils",
"version": "1.0.0",
"description": "Shared utilities for Hawk packages",
"author": "CodeX <team@codex.so>",
"license": "AGPL-3.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:dev": "vitest"
},
"devDependencies": {
"eslint": "^9.14.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}