-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (50 loc) · 1.32 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
{
"license": "MIT",
"version": "1.6.0",
"type": "commonjs",
"name": "astrohelm-workspace",
"homepage": "https://astrohelm.ru",
"description": "Astrohelm workspace example",
"author": "Alexander Ivanov <sashapop101@gmail.com>",
"keywords": [
"nodejs",
"zero-dependencies",
"prettier",
"eslint",
"ts",
"workspace",
"example",
"preset",
"starter-kit",
"astrohelm",
"javascript",
"typescript"
],
"main": "index.js",
"types": "types/index.d.ts",
"packageManager": "npm@9.6.4",
"readmeFilename": "README.md",
"engines": { "node": ">= 18" },
"browser": {},
"files": ["/dist", "/lib", "/types"],
"scripts": {
"test": "node --test",
"dev": "node index.js",
"prettier:fix": "prettier --write \"**/*.{js,ts,json,html,cjs,md,yaml}\"",
"eslint:fix": "eslint --fix \"**/*.{js,ts}\""
},
"repository": { "type": "git", "url": "git+https://github.com/astrohelm/node-workspace.git" },
"bugs": {
"url": "https://github.com/astrohelm/node-workspace/issues",
"email": "sashapop101@gmail.com"
},
"devDependencies": {
"@types/node": "^22.5.2",
"eslint": "^9.9.1",
"eslint-config-astrohelm": "^2.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}