-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.2 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
{
"name": "rdct",
"version": "2.0.0",
"description": "Deeply redact all the things",
"type": "module",
"main": "dist/rdct.js",
"types": "dist/rdct.d.ts",
"scripts": {
"build": "rimraf dist && tsc && vite build",
"test": "vitest",
"precommit": "lint-staged",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"redact",
"redaction",
"deep redact",
"deep redaction"
],
"files": [
"dist"
],
"author": "Brian Wendt <brian@wendtcode.com> (https://brianwendt.com)",
"license": "MIT",
"repository": "wendtcode/rdct",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^20.12.6",
"glob": "^10.3.12",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.4",
"vite-plugin-dts": "^3.8.1",
"vite": "^5.2.0",
"vitest": "^1.4.0"
},
"eslintConfig": {
"extends": [
"prettier"
]
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"semi": false,
"singleQuote": true
}
}