-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 954 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 954 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@shipstatic/types",
"version": "0.9.11",
"description": "Shared types for ShipStatic platform",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "vitest",
"prepare": "husky"
},
"files": [
"dist",
"src"
],
"keywords": [
"types",
"shipstatic"
],
"author": "ShipStatic",
"license": "MIT",
"homepage": "https://github.com/shipstatic/types",
"repository": {
"type": "git",
"url": "git+https://github.com/shipstatic/types.git"
},
"bugs": {
"url": "https://github.com/shipstatic/types/issues"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^24.10.9",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
}
}