-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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": "@johngw/outerface",
"version": "2.0.3",
"description": "Typescript static interface",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"prepare": "husky install",
"test": "tsc --project test/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jg-wright/outerface.git"
},
"keywords": [
"typescript",
"static",
"interface"
],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jg-wright/outerface/issues"
},
"homepage": "https://github.com/jg-wright/outerface#readme",
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@types/node": "^24.12.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"rimraf": "^6.1.3",
"typescript": "^7.0.2"
},
"lint-staged": {
"*.{md,json,js,jsx,ts,tsx,yml,yaml}": [
"npx prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"tslib": "^2.8.1"
}
}