-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
{
"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"
},
"author": "Kaspar Poland @ Semantic Arts",
"license": "ISC",
"dependencies": {
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.3.3",
"glob": "^13.0.1",
"lodash": "^4.17.23",
"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": "^9.39.2",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^9.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^25.2.0",
"@types/tmp": "^0.2.6",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"npm-check-updates": "^19.3.2",
"pkg": "^5.8.1",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"ts-to-zod": "^5.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}