-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.5 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
{
"name": "@y-octo/cli",
"version": "1.0.0",
"packageManager": "yarn@4.12.0",
"license": "MIT",
"workspaces": [
".",
"y-octo-node"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build:node": "yarn workspace @y-octo/node build",
"test:node": "yarn workspace @y-octo/node test",
"test:node:coverage": "yarn workspace @y-octo/node test:coverage",
"format": "run-p format:toml format:prettier format:rs",
"format:toml": "taplo format",
"format:prettier": "prettier --write .",
"format:rs": "cargo +nightly fmt --all"
},
"devDependencies": {
"@taplo/cli": "^0.7.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4"
},
"lint-staged": {
"*.@(js|ts|tsx|yml|yaml|json|md)": [
"prettier --write"
],
"*.toml": [
"taplo format"
],
"*.rs": [
"cargo +nightly fmt --"
]
},
"resolutions": {
"array-buffer-byte-length": "npm:@nolyfill/array-buffer-byte-length@^1",
"arraybuffer.prototype.slice": "npm:@nolyfill/arraybuffer.prototype.slice@^1",
"available-typed-arrays": "npm:@nolyfill/available-typed-arrays@^1",
"define-properties": "npm:@nolyfill/define-properties@^1",
"es-set-tostringtag": "npm:@nolyfill/es-set-tostringtag@^1",
"function-bind": "npm:@nolyfill/function-bind@^1",
"function.prototype.name": "npm:@nolyfill/function.prototype.name@^1",
"get-symbol-description": "npm:@nolyfill/get-symbol-description@^1",
"globalthis": "npm:@nolyfill/globalthis@^1",
"gopd": "npm:@nolyfill/gopd@^1",
"has": "npm:@nolyfill/has@^1",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@^1",
"has-proto": "npm:@nolyfill/has-proto@^1",
"has-symbols": "npm:@nolyfill/has-symbols@^1",
"has-tostringtag": "npm:@nolyfill/has-tostringtag@^1",
"internal-slot": "npm:@nolyfill/internal-slot@^1",
"is-array-buffer": "npm:@nolyfill/is-array-buffer@^1",
"is-date-object": "npm:@nolyfill/is-date-object@^1",
"is-regex": "npm:@nolyfill/is-regex@^1",
"is-shared-array-buffer": "npm:@nolyfill/is-shared-array-buffer@^1",
"is-string": "npm:@nolyfill/is-string@^1",
"is-symbol": "npm:@nolyfill/is-symbol@^1",
"is-weakref": "npm:@nolyfill/is-weakref@^1",
"object-keys": "npm:@nolyfill/object-keys@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"regexp.prototype.flags": "npm:@nolyfill/regexp.prototype.flags@^1",
"safe-array-concat": "npm:@nolyfill/safe-array-concat@^1",
"safe-regex-test": "npm:@nolyfill/safe-regex-test@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"string.prototype.padend": "npm:@nolyfill/string.prototype.padend@^1",
"string.prototype.trim": "npm:@nolyfill/string.prototype.trim@^1",
"string.prototype.trimend": "npm:@nolyfill/string.prototype.trimend@^1",
"string.prototype.trimstart": "npm:@nolyfill/string.prototype.trimstart@^1",
"typed-array-buffer": "npm:@nolyfill/typed-array-buffer@^1",
"typed-array-byte-length": "npm:@nolyfill/typed-array-byte-length@^1",
"typed-array-byte-offset": "npm:@nolyfill/typed-array-byte-offset@^1",
"typed-array-length": "npm:@nolyfill/typed-array-length@^1",
"unbox-primitive": "npm:@nolyfill/unbox-primitive@^1",
"which-boxed-primitive": "npm:@nolyfill/which-boxed-primitive@^1",
"which-typed-array": "npm:@nolyfill/which-typed-array@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1"
}
}