-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@voxpelli/node-module-template",
"version": "0.0.0",
"description": "A GitHub template repo for node modules",
"homepage": "http://github.com/voxpelli/node-module-template",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-module-template.git"
},
"keywords": [],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0",
"typescript": ">=5.9"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map"
],
"scripts": {
"build": "run-s build:*",
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"check": "run-s clean && run-p check:* --continue-on-error && run-s check-type-tests",
"check:ast-grep": "ast-grep scan",
"check:installed-check": "installed-check -i tstyche",
"check:knip": "knip",
"check:lint": "eslint",
"check:md": "remark .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"check-type-tests": "run-s build && tstyche --target \"$(node -p \"require('./package.json').engines.typescript\")\" --reporters list,summary && run-s clean",
"clean": "run-p clean:*",
"clean:declarations-lib": "rm -f $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts' 2>/dev/null || true)",
"clean:declarations-top": "rm -f $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')",
"fix": "run-s fix:*",
"fix:ast-grep": "ast-grep scan --update-all",
"fix:lint": "eslint --fix",
"fix:md": "remark . -o",
"husky-disable": "git config --unset core.hooksPath",
"husky-enable": "husky",
"prepublishOnly": "run-s build",
"test": "run-s check test:*",
"test:node": "c8 --reporter=lcov --reporter=text node --test",
"test-ci": "run-s test:*"
},
"devDependencies": {
"@ast-grep/cli": "^0.44.1",
"@types/node": "^22.20.1",
"@voxpelli/ast-grep-rules": "^0.1.0",
"@voxpelli/eslint-config": "^25.1.0",
"@voxpelli/remark-preset": "^0.1.1",
"@voxpelli/tsconfig": "^16.2.1",
"@voxpelli/typed-utils": "^5.0.0",
"c8": "^12.0.0",
"eslint": "^9.39.5",
"husky": "^9.1.7",
"installed-check": "^10.0.1",
"knip": "^6.29.0",
"npm-run-all2": "^9.0.2",
"remark-cli": "^12.0.1",
"tstyche": "^7.2.2",
"type-coverage": "^2.30.1",
"typescript": "~6.0.2"
},
"remarkConfig": {
"plugins": [
"@voxpelli/remark-preset"
]
}
}