-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "nushell",
"version": "0.101.0",
"bin": {
"nu": "lib/index.js"
},
"distTag": "latest",
"nuVer": "0.101.0",
"license": "MIT",
"description": "The official release of Nushell with default features included.",
"keywords": [
"cli",
"command",
"nu",
"nushell",
"script",
"shell",
"terminal"
],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc",
"dev": "pnpm build && node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nushell/nushell"
},
"author": "hustcer <hustcer@gmail.com>",
"bugs": {
"url": "https://github.com/nushell/nushell/issues"
},
"homepage": "https://github.com/hustcer/nu-to-npm#readme",
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"typescript": "^5.5.2"
},
"optionalDependencies": {
"@nushell/windows-x64": "0.101.0",
"@nushell/windows-arm64": "0.101.0",
"@nushell/linux-x64": "0.101.0",
"@nushell/linux-riscv64": "0.101.0",
"@nushell/linux-arm64": "0.101.0",
"@nushell/linux-arm": "0.101.0",
"@nushell/darwin-x64": "0.101.0",
"@nushell/darwin-arm64": "0.101.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"lib/*"
],
"root": true
}
}