-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "@semantic-arts/copyright",
"version": "1.0.0",
"description": "A script to automate copyrighting files",
"type": "module",
"main": "index.js",
"bin": {
"copyright": "./dist/src/cli/cli.js"
},
"files": [
"./dist/**/*.js"
],
"scripts": {
"lint": "eslint ./ --fix",
"package": "pkg . --targets node14-macos-x64 --output copyright",
"build": "npm run clean; tsc; chmod +x ./dist/src/cli/cli.js",
"clean": "rm -rf ./dist; rm copyright",
"test": "npm run build && vitest run",
"prepare": "husky"
},
"pkg": {
"scripts": "dist/**/*.js"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"author": "Kaspar Poland @ Semantic Arts",
"license": "ISC",
"dependencies": {
"cosmiconfig": "^9.0.1",
"fs-extra": "^11.3.5",
"glob": "^13.0.6",
"lodash": "^4.18.1",
"tmp": "^0.2.5",
"ts-transformer-keys": "^0.4.4",
"winston": "^3.19.0",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^9.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"@types/tmp": "^0.2.6",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"npm-check-updates": "^19.6.6",
"pkg": "^5.8.1",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"ts-to-zod": "^5.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
}
}