-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.75 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.75 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "create-windowless-app",
"version": "13.0.7",
"description": "Create a windowless NodeJS app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"create-windowless-app": "./dist/index.js"
},
"scripts": {
"prepare": "npm run husky-install && npx fix-lockfile-integrity",
"husky-install": "git config --get core.hookspath || husky",
"prebuild": "npm run test",
"build": "npm run build:no-test",
"build:no-test": "npm run tsc && npm run add-shebang && npm run package",
"build:no-test:ci": "npm run tsc && npm run add-shebang && del package-lock.json && npm prune --omit=dev && npm shrinkwrap && npm run package",
"test": "npm run eslint && npm run type-check && npm run jest",
"eslint": "eslint src/ test/ integration_test/ templates/ *.ts",
"eslint:fix": "npm run eslint -- --fix",
"type-check": "tsc --build tsconfig.json",
"jest": "cross-env FORCE_COLOR=0 jest",
"jest:unit": "cross-env FORCE_COLOR=0 jest ./test/",
"jest:integration": "cross-env FORCE_COLOR=0 jest ./integration_test/",
"prettier": "prettier --write *.json templates/**/*.json",
"pretsc": "rimraf dist",
"tsc": "tsc --build tsconfig.build.json",
"add-shebang": "add-shebang",
"start": "ts-node src/index.ts",
"start:help": "npm run start -- --help",
"package": "npm pack",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoavain/create-windowless-app.git"
},
"keywords": [
"windowless",
"no console",
"nodew",
"template",
"typescript"
],
"author": "yoavain",
"license": "MIT",
"engines": {
"node": ">=20",
"npm": ">=9"
},
"files": [
"dist/**",
"templates/**"
],
"bugs": {
"url": "https://github.com/yoavain/create-windowless-app/issues"
},
"homepage": "https://github.com/yoavain/create-windowless-app#readme",
"devDependencies": {
"@eslint/compat": "2.0.4",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@tsconfig/node20": "20.1.9",
"@types/jest": "30.0.0",
"@types/mock-fs": "4.13.4",
"@types/node": "24.12.2",
"@types/node-notifier": "8.0.5",
"@types/validate-npm-package-name": "4.0.2",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"add-shebang": "0.1.0",
"copy-webpack-plugin": "14.0.0",
"cross-env": "10.1.0",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.1",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-security": "4.0.0",
"global-npm": "0.5.0",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"mock-fs": "5.5.0",
"mocked-env": "1.3.5",
"node-notifier": "10.0.1",
"nyc": "18.0.0",
"postject": "1.0.0-alpha.6",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tmp-promise": "3.0.3",
"ts-jest": "29.4.9",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"webpack": "5.105.4",
"webpack-cli": "6.0.1",
"winston": "3.19.0"
},
"dependencies": {
"chalk": "4.1.2",
"inquirer": "11.1.0",
"validate-npm-package-name": "7.0.2"
},
"lint-staged": {
"*.(ts|js)": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}