-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.58 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "wardens",
"version": "0.5.1",
"description": "A framework for resource management",
"type": "module",
"main": "./dist/wardens.cjs",
"module": "./dist/wardens.js",
"types": "./src/index.ts",
"repository": "git@github.com:PsychoLlama/wardens.git",
"author": "Jesse Gibson <JesseTheGibson@gmail.com>",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/wardens.cjs",
"import": "./dist/wardens.js"
}
},
"files": [
"dist",
"src"
],
"keywords": [
"resource",
"management",
"manager",
"server",
"lifetimes",
"hierarchy",
"framework"
],
"scripts": {
"prepack": "tsc && vite build",
"test": "./scripts/run-tests",
"test:lint": "eslint src --color",
"test:unit": "vitest --color --typecheck",
"test:fmt": "prettier --check src --color",
"print-pkg-version": "echo ${npm_package_version}",
"release:candidate": "./scripts/publish-rc",
"release:stable": "./scripts/publish-stable"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.tsx?": [
"eslint",
"prettier --check"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.0.0",
"eslint": "^9.7.0",
"husky": "^9.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0-alpha.54",
"vite": "^6.0.0",
"vitest": "^2.0.0"
}
}